• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/limit.php
  • Класс: BitrixImopenlinesLimit
  • Вызов: Limit::getTrackerLimit
static function getTrackerLimit()
{
	if(!ModuleManager::isModuleInstalled('bitrix24'))
		return false;

	if (CBitrix24::IsLicensePaid())
		return false;

	if(CBitrix24::IsDemoLicense())
		return false;

	if (CBitrix24::IsNfrLicense())
		return false;

	return (int)Option::get('imopenlines', self::OPTION_TRACKER_LIMIT);
}