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

	return parent::getName();
}