• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook.php
  • Класс: BitrixLandingHook
  • Вызов: Hook::getForSite
static function getForSite($id)
{
	if (!Landing::getEditMode())
	{
		static $hooks = [];
	}
	else
	{
		$hooks = [];
	}

	if (!array_key_exists($id, $hooks))
	{
		$hooks[$id] = self::getList($id, self::ENTITY_TYPE_SITE);
	}

	return $hooks[$id];
}