1<?php 2/* 3 * additional configuration options used by the template 4 * See http://www.splitbrain.org/wiki:tpl:roundbox#configuration for more info 5 */ 6$conf['rb_theme'] = 'evening'; // theme 7 8$conf['rb_tagline'] = ''; // tagline under wiki title 9 10$conf['rb_roundcorners'] = true; // main boxes with round corners? (mozilla only) 11 12$conf['rb_sidebar_orientation'] = 'left'; // side the sidebar is on left|right 13$conf['rb_sitenav'] = true; // show site navigation in sidebar true|false 14$conf['rb_uselinks'] = true; // use links instead of buttons 15$conf['rb_main_sidebar'] = false; // Always show main sidebar 16$conf['rb_showeditbtn'] = false; // Show Edit button on sidebar 17 18$conf['rb_youarehere'] = true; // hierarchical navigation instead of breadcrumbs 19$conf['rb_crumbsep'] = ' → '; // Specifies what separates each breadcrumb 20$conf['rb_removeunderscore'] = true; // Removes underscore from breadcrumb links 21$conf['rb_index'] = 'start'; // Sets the name for the index page of namespaces 22 23$conf['rb_private'] = false; // Private wiki 24 25// which actions should be available in the command box in the sidebar? 26$conf['rb_actions'] = array( 27 'edit', 28 'revert', 29 'history', 30 'subscribe', 31 'backlink', 32 '-', 33 'index', 34 'recent', 35 '-', 36 'admin', 37 '-', 38 'profile', 39 'login'); 40 41$conf['rb_act_ac_lvl'] = array( 42 // only admins can see the 'Admin' button 43 'admin' => AUTH_ADMIN, 44 // Show "Edit this page" only to users that have at least edit level access 45 'edit' => AUTH_EDIT, 46 // same for "Old revisions" 47 'revert' => AUTH_EDIT, 48 // same for "Old revisions" 49 'history' => AUTH_EDIT, 50 // and "Recent changes" 51 'recent' => AUTH_EDIT, 52 // Show 'Backlinks' to all 53 'backlink' => '', 54 //'index' => '', 55 //'login' => '', 56 //'profile' => '', 57 //'search' => '', 58 //'subscribe' => '', 59 //'goto' => '', 60); 61$conf['rb_act_users'] = array( 62 //'admin' => '', 63 'backlink' => '@ALL', 64 // Always show edit to users of the groups 'reviewers' and 'editors' 65 // If they don't have edit level access, they will see "Show page source" 66 'edit' => '@review,@edit', 67 'revert' => '@edit', 68 'history' => '@review,@edit', 69 'recent' => '@review,@edit', 70 // Everybody should be able to see the index 71 'index' => '@ALL', 72 // and the Login button/link 73 'login' => '@ALL', 74 // and the "Update Profile" form once 1logged in 75 'profile' => '@ALL', 76 // everybody in the standard group should see the "(Un)Subscribe" action 77 'subscribe' => '@user', 78 // Everybody can use the search form 79 'search' => '@ALL', 80 // but only registered users see the "Goto" form 81 'goto' => '@user', 82); 83?> 84