• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/model/page.php
  • Класс: BitrixSalesCenterModelPage
  • Вызов: Page::getCode
public function getCode()
{
	if($this->getLandingId() > 0)
	{
		$landingInfo = LandingManager::getInstance()->getLanding($this->getLandingId());
		if($landingInfo)
		{
			return $landingInfo['CODE'];
		}
	}

	return null;
}