• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/retargeting/audience.php
  • Класс: BitrixSeoRetargetingAudience
  • Вызов: Audience::deleteContacts
public function deleteContacts($audienceId, array $contacts, array $options)
{
	if ($this->isQueueModeEnabled())
	{
		$this->addToQueue($audienceId, $contacts, $options, true);
		$response = Response::create(static::TYPE_CODE);
		$response->setData(array());
		return $response;
	}
	else
	{
		return $this->removeContacts($audienceId, $contacts, $options);
	}
}