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