xref: /template/wikiweko/conf/default.php (revision 56480ef3a57883b2a3472ac202bf303bae746a64)
1fa5fcacaSAndreas Haerter<?php
2fa5fcacaSAndreas Haerter
3fa5fcacaSAndreas Haerter/**
4fa5fcacaSAndreas Haerter * Default options for the "vector" DokuWiki template
5fa5fcacaSAndreas Haerter *
6fa5fcacaSAndreas Haerter * Notes:
7099d81c1SAndreas Haerter * - In general, use the admin webinterface of DokuWiki to change the config.
8fa5fcacaSAndreas Haerter * - To change the type of a config value, have a look at "metadata.php" in
9fa5fcacaSAndreas Haerter *   the same directory as this file.
10fa5fcacaSAndreas Haerter * - To change/translate the descriptions showed in the admin/configuration
11fa5fcacaSAndreas Haerter *   menu of DokuWiki, have a look at the file
12e3217ae2SAndreas Haerter *   /lib/tpl/vector/lang/<your lang>/settings.php. If it does not exists,
13099d81c1SAndreas Haerter *   copy and translate the English one. Don't forget to mail your translation
14e3217ae2SAndreas Haerter *   to ARSAVA <dokuwiki@dev.arsava.com>. Thanks! :-D
15fa5fcacaSAndreas Haerter * - To change the [tabs|boxes|buttons] configuration, have a look at
16fa5fcacaSAndreas Haerter *   "/user/[tabs|boxes|buttons].php".
17fa5fcacaSAndreas Haerter *
18fa5fcacaSAndreas Haerter *
19fa5fcacaSAndreas Haerter * LICENSE: This file is open source software (OSS) and may be copied under
20fa5fcacaSAndreas Haerter *          certain conditions. See COPYING file for details or try to contact
21fa5fcacaSAndreas Haerter *          the author(s) of this file in doubt.
22fa5fcacaSAndreas Haerter *
23fa5fcacaSAndreas Haerter * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html)
24e3217ae2SAndreas Haerter * @author ARSAVA <dokuwiki@dev.arsava.com>
25e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/template:vector
26e3217ae2SAndreas Haerter * @link https://www.dokuwiki.org/devel:configuration
27fa5fcacaSAndreas Haerter */
28fa5fcacaSAndreas Haerter
29fa5fcacaSAndreas Haerter
30fa5fcacaSAndreas Haerter//check if we are running within the DokuWiki environment
31fa5fcacaSAndreas Haerterif (!defined("DOKU_INC")){
32fa5fcacaSAndreas Haerter    die();
33fa5fcacaSAndreas Haerter}
34fa5fcacaSAndreas Haerter
35fa5fcacaSAndreas Haerter//user pages
36*56480ef3SAndreas Haerter$conf["vector_userpage"]    = 1; //1: use/show user pages
37fa5fcacaSAndreas Haerter$conf["vector_userpage_ns"] = ":wiki:user:"; //namespace to use for user page storage
38fa5fcacaSAndreas Haerter
39fa5fcacaSAndreas Haerter//discussion pages
40*56480ef3SAndreas Haerter$conf["vector_discuss"]    = 1; //1: use/show discussion pages
41fa5fcacaSAndreas Haerter$conf["vector_discuss_ns"] = ":talk:"; //namespace to use for discussion page storage
42fa5fcacaSAndreas Haerter
43fa5fcacaSAndreas Haerter//site notice
44*56480ef3SAndreas Haerter$conf["vector_sitenotice"]           = 1; //1: use/show sitenotice
45fa5fcacaSAndreas Haerter$conf["vector_sitenotice_location"]  = ":wiki:site_notice"; //page/article used to store the sitenotice
46*56480ef3SAndreas Haerter$conf["vector_sitenotice_translate"] = 1; //1: load translated sitenotice if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
47fa5fcacaSAndreas Haerter
48fa5fcacaSAndreas Haerter//navigation
49*56480ef3SAndreas Haerter$conf["vector_navigation"]           = 1; //1: use/show navigation
50fa5fcacaSAndreas Haerter$conf["vector_navigation_location"]  = ":wiki:navigation"; //page/article used to store the navigation
51*56480ef3SAndreas Haerter$conf["vector_navigation_translate"] = 1; //1: load translated navigation if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
52fa5fcacaSAndreas Haerter
53fa5fcacaSAndreas Haerter//exportbox ("print/export")
54*56480ef3SAndreas Haerter$conf["vector_exportbox"]          = 1; //1: use/show exportbox
55*56480ef3SAndreas Haerter$conf["vector_exportbox_default"]  = 1; //1: use default exportbox (if exportbox is enabled at all)
56fa5fcacaSAndreas Haerter$conf["vector_exportbox_location"] = ":wiki:exportbox"; //page/article used to store a custom exportbox
57fa5fcacaSAndreas Haerter
58fa5fcacaSAndreas Haerter//toolbox
59*56480ef3SAndreas Haerter$conf["vector_toolbox"]          = 1; //1: use/show toolbox
60*56480ef3SAndreas Haerter$conf["vector_toolbox_default"]  = 1; //1: use default toolbox (if toolbox is enabled at all)
61fa5fcacaSAndreas Haerter$conf["vector_toolbox_location"] = ":wiki:toolbox"; //page/article used to store a custom toolbox
62fa5fcacaSAndreas Haerter
63f54a831fSAndreas Haerter//qr code box
64*56480ef3SAndreas Haerter$conf["vector_qrcodebox"] = 1; //1: use/show box with QR Code of current page's URL
65f54a831fSAndreas Haerter
66fa5fcacaSAndreas Haerter//custom copyright notice
67*56480ef3SAndreas Haerter$conf["vector_copyright"]           = 1; //1: use/show copyright notice
68*56480ef3SAndreas Haerter$conf["vector_copyright_default"]   = 1; //1: use default copyright notice (if copyright notice is enabled at all)
69fa5fcacaSAndreas Haerter$conf["vector_copyright_location"]  = ":wiki:copyright"; //page/article used to store a custom copyright notice
70*56480ef3SAndreas Haerter$conf["vector_copyright_translate"] = 1; //1: load translated copyright notice if translation plugin is available (see <https://www.dokuwiki.org/plugin:translation>)
71fa5fcacaSAndreas Haerter
72fa5fcacaSAndreas Haerter//donation link/button
73*56480ef3SAndreas Haerter$conf["vector_donate"]     = 0; //1: use/show donation link/button
74e3217ae2SAndreas Haerter$conf["vector_donate_url"] = "https://donate.arsava.com/dokuwiki-template-vector/"; //custom donation URL
75fa5fcacaSAndreas Haerter
76fa5fcacaSAndreas Haerter//TOC
77fa5fcacaSAndreas Haerter$conf["vector_toc_position"] = "article"; //article: show TOC embedded within the article; "sidebar": show TOC near the navigation, left column
78fa5fcacaSAndreas Haerter
79fa5fcacaSAndreas Haerter//other stuff
80fa5fcacaSAndreas Haerter$conf["vector_breadcrumbs_position"]  = "bottom"; //position of breadcrumbs navigation ("top" or "bottom")
81fa5fcacaSAndreas Haerter$conf["vector_youarehere_position"]   = "top"; //position of "you are here" navigation ("top" or "bottom")
82fa5fcacaSAndreas Haerter$conf["vector_cite_author"]           = "Anonymous Contributors"; //name to use for the author on the citation page
83*56480ef3SAndreas Haerter$conf["vector_loaduserjs"]            = 0; //1: vector/user/user.js will be loaded
84*56480ef3SAndreas Haerter$conf["vector_closedwiki"]            = 0; //1: hides most tabs/functions until user is logged in
85fa5fcacaSAndreas Haerter
86