• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/routing/router.php
  • Класс: BitrixVoximplantRoutingRouter
  • Вызов: Router::buildExecutionGraph
public function buildExecutionGraph(Call $call)
{
	if($call->getIncoming() == CVoxImplantMain::CALL_OUTGOING)
	{
		return $this->buildOutgoingExecutionGraph($call);
	}
	else if($call->getIncoming() == CVoxImplantMain::CALL_INCOMING)
	{
		return $this->buildIncomingExecutionGraph($call);
	}
	else if($call->getIncoming() == CVoxImplantMain::CALL_CALLBACK)
	{
		return $this->buildCallbackExecutionGraph($call);
	}

	return false;
}