- Модуль: disk
- Путь к файлу: ~/bitrix/modules/disk/lib/focuscontroller.php
- Класс: BitrixDiskFocusController
- Вызов: FocusController::listActions
protected function listActions()
{
return array(
'showObjectInGrid' => array(
'method' => array('GET', 'POST'),
'redirect_on_auth' => true,
'close_session' => true,
'check_csrf_token' => false,
),
'showObjectInTrashCanGrid' => array(
'method' => array('GET', 'POST'),
'redirect_on_auth' => true,
'close_session' => true,
'check_csrf_token' => false,
),
'openFileDetail' => array(
'method' => array('GET', 'POST'),
'redirect_on_auth' => true,
'close_session' => true,
'check_csrf_token' => false,
),
'openFolderList' => array(
'method' => array('GET', 'POST'),
'redirect_on_auth' => true,
'close_session' => true,
'check_csrf_token' => false,
),
'openTrashcanFileDetail' => array(
'method' => array('GET', 'POST'),
'redirect_on_auth' => true,
'close_session' => true,
'check_csrf_token' => false,
),
);
}