• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/pullmanager.php
  • Класс: BitrixSalesCenterIntegrationPullManager
  • Вызов: PullManager::sendLandingUnPublicationEvent
public function sendLandingUnPublicationEvent($landingId)
{
	$params = ['landingId' => $landingId];
	$orderPublicUrlInfo = LandingManager::getInstance()->getOrderPublicUrlInfo();
	if($orderPublicUrlInfo && $orderPublicUrlInfo['landingId'] === $landingId)
	{
		$params['isOrderPublicUrlAvailable'] = false;
	}
	return $this->sendEvent(static::EVENT_LANDING_UNPUBLIC, $params);
}