-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.php
More file actions
31 lines (27 loc) · 1.13 KB
/
config.php
File metadata and controls
31 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/* ----------------------------------------------------------------------------
* Option to allow all of a web page's <body> to be edited in all cases.
*
* Default: only divs within each page may be edited ($edit_all_body = false;).
*/
$edit_all_body = false;
/* ---------------------------------------------------------------------------- * Div ids or classes that will be excluded from editing.
* Ids indicated with "#"; classes indicated with ".".
*
* Note: class "noedit" is excluded by default.
*
* Example: uncomment (remove the double slashes in) the following line to
* exclude divs like * <div id="header"> and <div class="keep">
*/
// $noedit_div_selectors = array("#header", ".keep");
/* ----------------------------------------------------------------------------
* Directories that will be excluded from browsing/file deleting/uploading.
*
* Note: directories backup, ckeditor, edit, and wysiwygit are excluded by
* default.
*
* Example: uncomment (remove the double slashes in) the following line to
* exclude directories test_pages and webalizer
*/
// $excluded_dirs = array('test_pages', 'webalizer');
?>