1<?php 2/** 3 * Default configuration for the arctic template 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Michael Klier <chi@chimeric.de> 7 * @author Mark C. Prins <mprins@users.sf.net> 8 */ 9 10$conf['sidebar'] = 'left'; // enable/disable sidebar 11$conf['pagename'] = 'sidebar'; // the pagename for sidebars inside namespaces 12$conf['user_sidebar_namespace'] = 'user'; // namespace to look for namespace of logged in users 13$conf['group_sidebar_namespace'] = 'group'; // namespace to look for groups-namespaces 14$conf['trace'] = 1; // show trace at top of the page 15$conf['main_sidebar_always'] = 1; // show main sidebar on all namespaces 16$conf['wiki_actionlinks'] = 'links'; // use buttons instead of links 17$conf['left_sidebar_content'] = 'main,user,group,namespace'; // defines the content of the left sidebar 18$conf['left_sidebar_order'] = 'main,namespace,user,group'; // defines the order of the left sidebar content 19$conf['right_sidebar_content'] = 'main,user,group,namespace'; // defines the content of the right sidebar 20$conf['right_sidebar_order'] = 'main,namespace,user,group'; // defines the order of the right sidebar content 21$conf['search'] = 'left'; // defines the position of the search form when 2 sidebars are used 22$conf['closedwiki'] = 0; // don't show sidebars for logged out users at all 23$conf['hideactions'] = 0; // hide all wiki related actions for non logged in users 24$conf['opengraphheading'] = 1; // add opengraph namespace prefixes to head section 25 26//Setup vim: ts=2 sw=2: 27