-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Exclude Files & Folders
Prasath Mani edited this page Jan 1, 2020
·
2 revisions
you can specify files or directories that you'd like to exclude from the listing using configuration, in case same name file/folder in multiple place also excluded.
// Files and folders to excluded from listing
// e.g. array('myfile.html', 'personal-folder', '*.php', ...)
$exclude_items = array(
'my-folder',
'secret-files',
'tinyfilemanger.php',
'*.php',
'*.js'
);