• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/controller/payment.php
  • Класс: BitrixSalesCenterControllerPayment
  • Вызов: Payment::checkModules
private function checkModules()
{
	if (!Loader::includeModule('crm'))
	{
		$this->addError(new Error('module "crm" is not installed.'));
		return false;
	}
	if (!Loader::includeModule('catalog'))
	{
		$this->addError(new Error('module "catalog" is not installed.'));
		return false;
	}
	if (!Loader::includeModule('sale'))
	{
		$this->addError(new Error('module "sale" is not installed.'));
		return false;
	}

	return true;
}