Projekt

Allgemein

Profil

GX-Abgewiesen #67726 » config.php

Victoria Gerrlich, 18.09.2020 15:27

 
1
<?php
2

    
3
return [
4
    //*************************
5
    //Permissions configuration
6
    //******************
7
    'delete_files'                            => true,
8
    'create_folders'                          => true,
9
    'delete_folders'                          => true,
10
    'upload_files'                            => true,
11
    'rename_files'                            => true,
12
    'rename_folders'                          => true,
13
    'duplicate_files'                         => true,
14
    'copy_cut_files'                          => true, // for copy/cut files
15
    'copy_cut_dirs'                           => true, // for copy/cut directories
16
    'chmod_files'                             => true, // change file permissions
17
    'chmod_dirs'                              => true, // change folder permissions
18
    'preview_text_files'                      => true, // eg.: txt, log etc.
19
    'edit_text_files'                         => true, // eg.: txt, log etc.
20
    'create_text_files'                       => true, // only create files with exts. defined in $editable_text_file_exts
21
    
22
    //**********************
23
    // Hidden files and folders
24
    //**********************
25
    // set the names of any folders you want hidden (eg "hidden_folder1", "hidden_folder2" ) Remember all folders with these names will be hidden (you can set any exceptions in config.php files on folders)
26
    'hidden_folders' => [],
27
    
28
    // set the names of any files you want hidden. Remember these names will be hidden in all folders (eg "this_document.pdf", "that_image.jpg" )
29
    'hidden_files' => [
30
        'config.php',
31
        'index.html',
32
    ],
33
];
(1-1/2)