• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/landingmanager.php
  • Класс: BitrixSalesCenterIntegrationLandingManager
  • Вызов: LandingManager::onLandingAfterUnPublication
static function onLandingAfterUnPublication(Event $event)
{
	$landingId = (int) $event->getParameter('id');
	if($landingId > 0)
	{
		PullManager::getInstance()->sendLandingUnPublicationEvent($landingId);
	}

	return new EventResult(EventResult::SUCCESS);
}