1<?php 2/** 3 * The default config cascade 4 * 5 * This array configures the default locations of various files in the 6 * DokuWiki directory hierarchy. It can be overriden in inc/preload.php 7 */ 8$config_cascade = array( 9 'main' => array( 10 'default' => array(DOKU_CONF.'dokuwiki.php'), 11 'local' => array(DOKU_CONF.'local.php'), 12 'protected' => array(DOKU_CONF.'local.protected.php'), 13 ), 14 'acronyms' => array( 15 'default' => array(DOKU_CONF.'acronyms.conf'), 16 'local' => array(DOKU_CONF.'acronyms.local.conf'), 17 ), 18 'entities' => array( 19 'default' => array(DOKU_CONF.'entities.conf'), 20 'local' => array(DOKU_CONF.'entities.local.conf'), 21 ), 22 'interwiki' => array( 23 'default' => array(DOKU_CONF.'interwiki.conf'), 24 'local' => array(DOKU_CONF.'interwiki.local.conf'), 25 ), 26 'license' => array( 27 'default' => array(DOKU_CONF.'license.php'), 28 'local' => array(DOKU_CONF.'license.local.php'), 29 ), 30 'mediameta' => array( 31 'default' => array(DOKU_CONF.'mediameta.php'), 32 'local' => array(DOKU_CONF.'mediameta.local.php'), 33 ), 34 'mime' => array( 35 'default' => array(DOKU_CONF.'mime.conf'), 36 'local' => array(DOKU_CONF.'mime.local.conf'), 37 ), 38 'scheme' => array( 39 'default' => array(DOKU_CONF.'scheme.conf'), 40 'local' => array(DOKU_CONF.'scheme.local.conf'), 41 ), 42 'smileys' => array( 43 'default' => array(DOKU_CONF.'smileys.conf'), 44 'local' => array(DOKU_CONF.'smileys.local.conf'), 45 ), 46 'wordblock' => array( 47 'default' => array(DOKU_CONF.'wordblock.conf'), 48 'local' => array(DOKU_CONF.'wordblock.local.conf'), 49 ), 50 'userstyle' => array( 51 'default' => DOKU_CONF.'userstyle.css', 52 'print' => DOKU_CONF.'printstyle.css', 53 'feed' => DOKU_CONF.'feedstyle.css', 54 'all' => DOKU_CONF.'allstyle.css', 55 ), 56 'userscript' => array( 57 'default' => DOKU_CONF.'userscript.js' 58 ), 59 'acl' => array( 60 'default' => DOKU_CONF.'acl.auth.php', 61 ), 62 'plainauth.users' => array( 63 'default' => DOKU_CONF.'users.auth.php', 64 ), 65); 66 67