• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/integration/bitrix24manager.php
  • Класс: BitrixCalendarIntegrationBitrix24Manager
  • Вызов: Bitrix24Manager::hasDemoLicense
static function hasDemoLicense()
{
	if(self::$hasDemoLicense !== null)
	{
		return self::$hasDemoLicense;
	}

	if (
		!(ModuleManager::isModuleInstalled('bitrix24')
		&& Loader::includeModule('bitrix24'))
		&& method_exists('CBitrix24', 'IsDemoLicense')
	)
	{
		return (self::$hasDemoLicense = false);
	}

	return (self::$hasDemoLicense = CBitrix24::IsDemoLicense());
}