• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/document/documentcontroller.php
  • Класс: BitrixDiskDocumentDocumentController
  • Вызов: DocumentController::listActions
protected function listActions()
{
	return array(
		'start',
		'show' => array(
			'method' => array('POST'),
		),
		'publishBlank' => array(
			'method' => array('POST', 'GET'),
			'check_csrf_token' => false,
		),
		'saveBlank' => array(
			'method' => array('POST'),
		),
		'discardBlank' => array(
			'method' => array('POST'),
		),
		'rename' => array(
			'method' => array('POST'),
		),
		'publish' => array(
			'method' => array('POST', 'GET'),
			'check_csrf_token' => false,
		),
		'commit' => array(
			'method' => array('POST'),
		),
		'discard' => array(
			'method' => array('POST'),
		),
		'checkView' => array(
			'method' => array('POST'),
		),
		'getLastVersionUri' => array(
			'method' => array('POST'),
		),
	);
}