• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/landingmanager.php
  • Класс: BitrixSalesCenterIntegrationLandingManager
  • Вызов: LandingManager::getLastCreatedWebFormLanding
protected function getLastCreatedWebFormLanding($webFormPageCode)
{
	if($this->isSiteExists())
	{
		return LandingLanding::getList([
			'select' => ['*'],
			'filter' => [
				'=SITE_ID' => $this->getConnectedSiteId(),
				'=TPL_CODE' => $webFormPageCode,
			],
			'order' => ['ID' => 'DESC'],
		])->fetch();
	}

	return false;
}