Your IP : 216.73.217.95


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-filelist/Configuration/Backend/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-filelist/Configuration/Backend/Routes.php

<?php

/**
 * Definitions for routes provided by EXT:backend
 * Contains all "regular" routes for entry points
 *
 * Please note that this setup is preliminary until all core use-cases are set up here.
 * Especially some more properties regarding modules will be added until TYPO3 CMS 7 LTS, and might change.
 *
 * Currently the "access" property is only used so no token creation + validation is made,
 * but will be extended further.
 */
return [

    // Editing the contents of a file
    'file_edit' => [
        'path' => '/file/editcontent',
        'target' => \TYPO3\CMS\Filelist\Controller\File\EditFileController::class . '::mainAction',
    ],

    // Create a new file
    'file_create' => [
        'path' => '/file/create-file',
        'target' => \TYPO3\CMS\Filelist\Controller\File\CreateFileController::class . '::mainAction',
    ],

    // Replace a file with a different one
    'file_replace' => [
        'path' => '/file/replace',
        'target' => \TYPO3\CMS\Filelist\Controller\File\ReplaceFileController::class . '::mainAction',
    ],

    // Upload new files
    'file_upload' => [
        'path' => '/file/upload',
        'target' => \TYPO3\CMS\Filelist\Controller\File\FileUploadController::class . '::mainAction',
    ],

    'file_download' => [
        'path' => '/file/download',
        'methods' => ['POST'],
        'target' => \TYPO3\CMS\Filelist\Controller\FileDownloadController::class . '::handleRequest',
    ],
];