• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/bitrix24.php
  • Класс: BitrixTasksIntegrationBitrix24
  • Вызов: Bitrix24::isLicenseShareware
static function isLicenseShareware()
{
	if(!static::includeModule()) // box installation is not a shareware, its like a "freeware" in terms of bitrix24
	{
		return false;
	}

	$type = CBitrix24::getLicenseType();

	// todo: could be more custom licenses
	return $type == 'nfr' || $type == 'bis_inc' || $type == 'edu' || $type == 'startup';
}