]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Hawaiian/themeinfo.php
New feature: Easier to run multiple wiks off of one set of code. Name
[SourceForge/phpwiki.git] / themes / Hawaiian / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.24 2003-12-05 01:31:50 carstenklapp Exp $');
4
5 /**
6  * WikiWiki Hawaiian theme for PhpWiki.
7  */
8
9 require_once('lib/Theme.php');
10
11 class Theme_Hawaiian extends Theme {
12     function getCSS() {
13         // FIXME: this is a hack which will not be needed once
14         //        we have dynamic CSS.
15         $css = Theme::getCSS();
16         $css->pushcontent(HTML::style(array('type' => 'text/css'),
17                              new RawXml(sprintf("<!--\nbody {background-image: url(%s);}\n-->",
18                                                 $this->getImageURL('uhhbackground.jpg')))));
19         return $css;
20     }
21 }
22 $Theme = new Theme_Hawaiian('Hawaiian');
23
24 // CSS file defines fonts, colors and background images for this
25 // style.  The companion '*-heavy.css' file isn't defined, it's just
26 // expected to be in the same directory that the base style is in.
27
28 $Theme->setDefaultCSS('Hawaiian', 'Hawaiian.css');
29 $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen');
30 $Theme->addAlternateCSS(_("Modern"), 'phpwiki-modern.css');
31 $Theme->addAlternateCSS('PhpWiki', 'phpwiki.css');
32
33 /**
34  * The logo image appears on every page and links to the HomePage.
35  */
36 $Theme->addImageAlias('logo', 'PalmBeach.jpg');
37 $Theme->addImageAlias('logo', WIKI_NAME . 'Logo.png');
38
39 /**
40  * The Signature image is shown after saving an edited page. If this
41  * is set to false then the "Thank you for editing..." screen will
42  * be omitted.
43  */
44 //$Theme->addImageAlias('signature', 'SubmersiblePiscesV.jpg');
45 $Theme->addImageAlias('signature', 'WaterFall.jpg');
46 $Theme->addImageAlias('signature', WIKI_NAME . "Signature.png");
47 // Uncomment this next line to disable the signature.
48 //$Theme->addImageAlias('signature', false);
49
50 // If you want to see more than just the waterfall let a random
51 // picture be chosen for the signature image:
52 include_once($Theme->file('lib/random.php'));
53 $imgSet = new randomImage($Theme->file("images/pictures"));
54 $imgFile = "pictures/" . $imgSet->filename;
55 $Theme->addImageAlias('signature', $imgFile);
56
57 //To test out the randomization just use logo instead of signature
58 //$Theme->addImageAlias('logo', $imgFile);
59
60 /*
61  * Link Icons
62  */
63 $Theme->setLinkIcon('interwiki');
64 $Theme->setLinkIcon('*', 'flower.png');
65
66 $Theme->setButtonSeparator(' ');
67
68 /**
69  * WikiWords can automatically be split by inserting spaces between
70  * the words. The default is to leave WordsSmashedTogetherLikeSo.
71  */
72 $Theme->setAutosplitWikiWords(true);
73
74 /*
75  * You may adjust the formats used for formatting dates and times
76  * below.  (These examples give the default formats.)
77  * Formats are given as format strings to PHP strftime() function See
78  * http://www.php.net/manual/en/function.strftime.php for details.
79  * Do not include the server's zone (%Z), times are converted to the
80  * user's time zone.
81  */
82 //$Theme->setDateFormat("%B %d, %Y");       // must not contain time
83
84
85 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
86 // (c-file-style: "gnu")
87 // Local Variables:
88 // mode: php
89 // tab-width: 8
90 // c-basic-offset: 4
91 // c-hanging-comment-ender-p: nil
92 // indent-tabs-mode: nil
93 // End:   
94 ?>