1<?php
2/*
3 * additional configuration options used by the SXS template
4 */
5$conf['sxs_sidebar_orientation'] = 'right';               // side the sidebar is on left|right
6$conf['sxs_sitenav'] = false;                             // show site navigation in sidebar true|false
7$conf['sxs_tagline'] = 'Wiki Pages';                      // tagline under wiki title
8$conf['sxs_roundcorners'] = false;                        // main boxes with round corners? (mozilla only)
9$conf['sxs_youarehere'] = true;                           // hierarchical navigation instaad of breadcrumbs
10$conf['sxs_crumbsep'] = ' &rarr; ';                       // Specifies what separates each breadcrumb
11$conf['sxs_index'] = 'home';                              // Sets the name for the index page of namespaces
12$conf['sxs_removeunderscore'] = true;                     // Removes underscore from breadcrumb links
13$conf['sxs_actions'] = array('edit', 'history', 'index', 'recent', 'admin', 'profile', 'login');
14//$conf['sxs_actions'] = array('edit', 'history', 'index', 'spec', 'recent', 'purge', 'admin', 'profile', 'login');
15                                                          // which actions should be available in the command box in the sidebar?
16$conf['sxs_uselinks'] = true;                             // use links instead of buttons
17$conf['sxs_act_ac_lvl'] = array(
18    'admin' => AUTH_ADMIN,       // only admins can see the 'Admin' button
19    'edit' => AUTH_EDIT,         // Show "Edit this page" only to users that have at least edit level access
20    'history' => AUTH_EDIT,      // same for "Old revisions"
21    'profile' => AUTH_ADMIN,
22);
23$conf['sxs_act_users'] = array(
24    'edit' => '@reviewers,@editors',          // Always show edit to users of the groups 'reviewers' and 'editors'
25    	      				      // If they don't have edit level access, they will see "Show page source"
26    'history' => '@users,@reviewers,@editors',
27    'recent' => '@users',
28    //'purge' => '@SXS',
29    //'spec' => '@spec',                       // Only SpEC members (and admins) should see the SpEC link
30    'profile' => '@users',                    // Anybody who is logged in should be able to see the profile
31    'login' => '@ALL',                        // Everybody should be able to see the Login button/link
32);
33?>
34