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