• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/order/ajaxprocessor.php
  • Класс: Bitrix\Crm\Order\AjaxProcessor
  • Вызов: AjaxProcessor::executeAction
protected function executeAction($actionName)
{
	$methodName = $this->getActionMethodName($actionName);

	if(!method_exists($this, $methodName))
	{
		throw new ArgumentOutOfRangeException($methodName);
	}

	call_user_func([$this, $methodName]);
}