1<?php 2 3/** 4 * Default options for the "scanlines" DokuWiki template 5 * 6 * Notes: 7 * - In general, use the admin webinterface of DokuWiki to change the config. 8 * - To change the type of a config value, have a look at "metadata.php" in 9 * 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/scanlines/lang/<your lang>/settings.php". If it does not exists, 13 * copy and translate the English one. And don't forget to mail the 14 * translation to me, Johannes Winkler <johannes@rocking-minds.org> :-D. 15 * 16 * 17 * LICENSE: This file is open source software (OSS) and may be copied under 18 * certain conditions. See COPYING file for details or try to contact 19 * the author(s) of this file in doubt. 20 * 21 * @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 22 * @author Johannes Winkler <johannes@rocking-minds.org> 23 * @author Michael Klier <chi@chimeric.de> 24 * @link http://www.dokuwiki.org/devel:configuration 25 * @link http://www.dokuwiki.org/template:scanlines 26 * @link http://www.dokuwiki.org/template:arctic 27 */ 28 29$conf['sidebar'] = 'right'; // sidebar on the right 30$conf['pagename'] = 'Sidebar'; // the pagename for sidebars inside namespaces 31$conf['main_sidebar_always'] = 1; // show main sidebar on all namespaces 32$conf['user_sidebar_namespace'] = ''; // namespace to look for namespace of logged in users 33$conf['group_sidebar_namespace'] = ''; // namespace to look for groups-namespaces 34$conf['left_sidebar_content'] = 'main,index,extra,toc'; // defines the content of the left sidebar 35$conf['left_sidebar_order'] = 'main,toc,toolbox,user,group,namespace,index,trace,extra'; // defines the order of the left sidebar content 36$conf['right_sidebar_content'] = 'main,index,extra,toc,'; // defines the content of the right sidebar 37$conf['right_sidebar_order'] = 'main,toc,toolbox,user,group,namespace,index,trace,extra'; // defines the order of the right sidebar content 38$conf['closedwiki1'] = 0; // show no sidebar to non logged in users 39$conf['closedwiki2'] = 0; // Sidebar shows only the login link to non logged in users 40$conf['hideactions'] = 0; // hide all wiki related actions to non logged in users 41$conf['userbar'] = 1; // show userbar on top 42$conf['sitemap'] = 1; // show sitemap-button in navigation 43$conf['logo'] = 'text'; // the logo consists of text 44$conf['logo_image'] = ''; // path to the logo-image 45$conf['logo_yourdefinition'] = 'your little definition'; // your definitin in the logo 46$conf['logo_yourname'] = 'by your name'; // your name in the logo 47$conf['navibutton1'] = '[[start|Home]]'; // navibutton1 in the navigation 48$conf['navibutton2'] = '[[blog|Blog]]'; // navibutton2 in the navigation 49$conf['navibutton3'] = '[[wiki|Wiki]]'; // navibutton3 in the navigation 50$conf['navibutton4'] = '[[about|About]]'; // navibutton4 in the navigation 51$conf['navibutton5'] = '[[another link|another link]]'; // navibutton5 in the navigation 52$conf['navibutton6'] = '[[another link|another link]]'; // navibutton6 in the navigation 53$conf['top_link'] = 1; // show rocket with top-link 54$conf["mnmlblog_loaduserjs"] = false; //TRUE: scanlines/user/user.js will be loaded 55 56?> 57