• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/internals/basecomponent.php
  • Класс: BitrixDiskInternalsBaseComponent
  • Вызов: BaseComponent::setProcessToDefaultAction
private function setProcessToDefaultAction()
{
	//Attention! we must accept GET, POST queries on default action for rendering component.
	//And we must never modify data in default action. It will be error.
	$this->realActionName = 'default';
	$this->setAction($this->realActionName, array(
		'method' => array('GET', 'POST'),
		'name' => 'default',
		'check_csrf_token' => false,
	));
}