• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/site/type.php
  • Класс: BitrixLandingSiteType
  • Вызов: Type::isEnabled
static function isEnabled($code)
{
	if (is_string($code))
	{
		$code = mb_strtoupper(trim($code));
		$types = Site::getTypes();
		if (array_key_exists($code, $types))
		{
			return true;
		}
	}

	return false;
}