• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/engine/yandexdirect.php
  • Класс: BitrixSeoEngineYandexDirect
  • Вызов: YandexDirect::deleteCampaign
public function deleteCampaign($campaignId)
{
	if (empty($campaignId))
	{
		throw new ArgumentNullException("campaignId");
	}
	
	$result = $this->getProxy()->getInterface()->deleteCampaign(static::ENGINE_ID, $campaignId);
	
	if (!empty($result['error']))
	{
		throw new YandexDirectException($result);
	}
	
	return $result;
}