• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/restriction/site.php
  • Класс: BitrixLandingRestrictionSite
  • Вызов: Site::isNew2021Tariff
static function isNew2021Tariff(): bool
{
	if (!Loader::includeModule('bitrix24'))
	{
		return false;
	}

	return in_array(
		CBitrix24::getLicenseType(),
		['basic', 'std', 'pro']
	);
}