• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/base.php
  • Класс: BitrixSalesCenterIntegrationBase
  • Вызов: Base::getInstance
static function getInstance()
{
	if(!isset(static::$instances[get_called_class()]))
	{
		static::$instances[get_called_class()] = new static();
	}

	return static::$instances[get_called_class()];
}