]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Hawaiian/themeinfo.php
New property in $Theme for customizing the button separator " | ".
[SourceForge/phpwiki.git] / themes / Hawaiian / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.9 2002-01-18 06:11:37 carstenklapp Exp $');
4
5 /**
6  * WikiWiki Hawaiian theme for PhpWiki.
7  */
8
9 require_once('lib/Theme.php');
10
11 $Theme = new Theme('Hawaiian');
12
13 // CSS file defines fonts, colors and background images for this
14 // style.  The companion '*-heavy.css' file isn't defined, it's just
15 // expected to be in the same directory that the base style is in.
16
17 $Theme->setDefaultCSS('Hawaiian', 'Hawaiian.css');
18 $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen');
19
20
21 // Logo image appears on every page and links to the HomePage.
22 $Theme->addImageAlias('logo', 'PalmBeach.jpg');
23 //$Theme->addImageAlias('signature', 'SubmersiblePiscesV.jpg'); //for Steve
24 $Theme->addImageAlias('signature', 'WaterFall.jpg'); //for Steve
25
26 /*
27  * Link Icons
28  */
29 $Theme->setLinkIcon('interwiki');
30 $Theme->setLinkIcon('*', 'flower.png');
31
32 $Theme->setButtonSep(' | ');
33
34 // FIXME: do we need this?
35 // If you want to see more than just the waterfall let a random
36 // picture be chosen for the signature image:
37 //include("themes/$theme/pictures/random.php");
38
39 // This defines separators used in RecentChanges and RecentEdits lists.
40 // If undefined, defaults to '' (nothing) and '...' (three periods).
41 //define("RC_SEPARATOR_A", ' . . . ');
42 //define("RC_SEPARATOR_B", ' --');
43
44 // Controls whether the '?' appears before or after UnknownWikiWords.
45 // The PhpWiki default is for the '?' to appear before.
46 //define('WIKIMARK_AFTER', true);
47
48 // If this theme defines any templates, they will completely override
49 // whatever templates have been defined in index.php.
50 /*
51 $templates = array(
52                    'BROWSE'   => "themes/$theme/templates/browse.html",
53                    'EDITPAGE' => "themes/$theme/templates/editpage.html",
54                    'MESSAGE'  => "themes/$theme/templates/message.html"
55                    );
56 */
57
58
59 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
60 // (c-file-style: "gnu")
61 // Local Variables:
62 // mode: php
63 // tab-width: 8
64 // c-basic-offset: 4
65 // c-hanging-comment-ender-p: nil
66 // indent-tabs-mode: nil
67 // End:   
68 ?>