• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/manager.php
  • Класс: BitrixLandingManager
  • Вызов: Manager::licenseIsFreeSite
static function licenseIsFreeSite(string $type): bool
{
	return
		$type !== 'KNOWLEDGE'
		&& $type !== 'STORE'
		&& (!CBitrix24::isLicensePaid() || CBitrix24::getLicenseType() === 'alive')
		&& !CBitrix24::IsNfrLicense()
	;
}