1<?php
2
3/**
4 * Types of the different option values for the "prsnl10" DokuWiki template
5 *
6 * Notes:
7 * - In general, use the admin webinterface of DokuWiki to change the config.
8 * - To change/add configuration values to store, have a look at this file
9 *   and the "default.php" in the same directory as this file.
10 * - To change/translate the descriptions showed in the admin/configuration
11 *   menu of DokuWiki, have a look at the file
12 *   /lib/tpl/prsnl10/lang/<your lang>/settings.php. If it does not exists,
13 *   copy and translate the English one. Don't forget to mail your translation
14 *   to
15 *     ARSAVA <dokuwiki@dev.arsava.com>
16 *   Thanks :-D.
17 *
18 *
19 * LICENSE: This file is open source software (OSS) and may be copied under
20 *          certain conditions. See COPYING file for details or try to contact
21 *          the author(s) of this file in doubt.
22 *
23 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
24 * @author ARSAVA <dokuwiki@dev.arsava.com>
25 * @link https://www.dokuwiki.org/template:prsnl10
26 * @link https://www.dokuwiki.org/devel:configuration
27 */
28
29
30//check if we are running within the DokuWiki environment
31if (!defined("DOKU_INC")){
32    die();
33}
34
35//header navigation
36$meta["prsnl10_headernav"]          = array("onoff");
37$meta["prsnl10_headernav_location"] = array("string");
38
39//custom copyright notice
40$meta["prsnl10_copyright"]          = array("onoff");
41$meta["prsnl10_copyright_default"]  = array("onoff");
42$meta["prsnl10_copyright_location"] = array("string");
43
44//custom footer content
45$meta["prsnl10_footer"]          = array("onoff");
46$meta["prsnl10_footer_location"] = array("string");
47
48//other stuff
49$meta["prsnl10_showpageinfo"]           = array("onoff");
50$meta["prsnl10_hideadminlinksfromanon"] = array("onoff");
51$meta["prsnl10_loaduserjs"]             = array("onoff");
52
53