• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/integration/rest/appconfiguration.php
  • Класс: BitrixBizprocIntegrationRestAppConfiguration
  • Вызов: AppConfiguration::checkRequiredParams
static function checkRequiredParams($type)
{
	$return = true;
	if ($type == self::ENTITY_BIZPROC_CRM_TRIGGER)
	{
		if (!Loader::IncludeModule('crm'))
		{
			throw new SystemException('need install module: crm');
		}
	}

	return $return;
}