• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/integration/bitrix24.php
  • Класс: BitrixTasksIntegrationBitrix24
  • Вызов: Bitrix24::checkFeatureEnabled
static function checkFeatureEnabled($featureName)
{
	if(isset($GLOBALS['__TASKS_DEVEL_ENV__']))
	{
		return true;
	}

	if(!static::includeModule()) // box installation, say yes
	{
		return true;
	}

	if(Feature::isFeatureEnabled($featureName)) // already payed, or trial is on = yes
	{
		return true;
	}

	return false;
}