• Модуль: recyclebin
  • Путь к файлу: ~/bitrix/modules/recyclebin/lib/integration/bitrix24.php
  • Класс: BitrixRecyclebinIntegrationis
  • Вызов: is::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';
}