CBP::__call

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBP
  4. __call
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/runtime.php
  • Класс: CBP
  • Вызов: CBP::__call
public function __call($name, $arguments)
{
	if (preg_match('|^get([a-z]+)service$|i', $name, $matches))
	{
		return $this->GetService($matches[1]. 'Service');
	}

	throw new MainSystemException("Unknown method `{$name}`");
}

Добавить комментарий