• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/restriction/hook.php
  • Класс: BitrixLandingRestrictionHook
  • Вызов: Hook::isHookAllowed
static function isHookAllowed(string $hookCode): bool
{
	$hookCode = strtolower($hookCode);
	if (isset(self::MAP[$hookCode]))
	{
		return self::isAllowed(self::MAP[$hookCode]);
	}
	return true;
}