]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/smaller/themeinfo.php
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / smaller / themeinfo.php
1 <?php
2 // Avoid direct call to this file.
3 // PHPWIKI_VERSION is defined in lib/prepend.php
4 if (!defined('PHPWIKI_VERSION')) {
5     header("Location: /");
6     exit;
7 }
8
9 // rcs_id('$Id$');
10 /**
11  * tiny actionbar, only Edit (if signed in) and Info => PageInfo,
12  *   all other Actionbars buttons in info.tmpl
13  * old-style Sign In button
14  * navbar also shorter labels and without buttons, just links
15  */
16
17 require_once('lib/WikiTheme.php');
18
19 class WikiTheme_smaller extends WikiTheme {
20
21     function makeActionButton ($action, $label = false, $page_or_rev = false) {
22         extract($this->_get_name_and_rev($page_or_rev));
23
24         if (is_array($action)) {
25             $attr = $action;
26             $action = isset($attr['action']) ? $attr['action'] : 'browse';
27         }
28         else
29             $attr['action'] = $action;
30
31         $class = is_safe_action($action) ? 'named-wiki' : 'wikiadmin';
32         if (!$label)
33             $label = $this->_labelForAction($action);
34
35         if ($version)
36             $attr['version'] = $version;
37
38         if ($action == 'browse')
39             unset($attr['action']);
40
41         return $this->makeButton($label, WikiURL($pagename, $attr), $class);
42     }
43     
44 }
45
46 $WikiTheme = new WikiTheme_smaller('smaller');
47
48 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
49 // (c-file-style: "gnu")
50 // Local Variables:
51 // mode: php
52 // tab-width: 8
53 // c-basic-offset: 4
54 // c-hanging-comment-ender-p: nil
55 // indent-tabs-mode: nil
56 // End:   
57 ?>