• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/internals/controller.php
  • Класс: BitrixReportInternalsController
  • Вызов: Controller::runAction
protected function runAction()
{
	$description = $this->getActionDescription();
	if($description['close_session'] === true)
	{
		//todo be careful by using this features.
		session_write_close();
	}
	$actionMethod = 'processAction' . $this->getAction();

	return $this->$actionMethod();
}