]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Hawaiian/themeinfo.php
Finished up get/setButtonSeparator functions.
[SourceForge/phpwiki.git] / themes / Hawaiian / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.13 2002-01-19 00:04:50 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 // Logo image appears on every page and links to the HomePage.
21 $Theme->addImageAlias('logo', 'PalmBeach.jpg');
22
23 //$Theme->addImageAlias('signature', 'SubmersiblePiscesV.jpg');
24 $Theme->addImageAlias('signature', 'WaterFall.jpg');
25
26 // If you want to see more than just the waterfall let a random
27 // picture be chosen for the signature image:
28 require_once('lib/random.php');
29 $imgSet = new ImageSet("themes/Hawaiian/images/pictures");
30 $imgFile = "pictures/" . $imgSet->pickRandomImage();
31 $Theme->addImageAlias('signature', $imgFile);
32
33 //To test out the randomization just use logo instead of signature
34 //$Theme->addImageAlias('logo', $imgFile);
35
36
37 /*
38  * Link Icons
39  */
40 $Theme->setLinkIcon('interwiki');
41 $Theme->setLinkIcon('*', 'flower.png');
42
43
44 // This defines separators used in RecentChanges and RecentEdits lists.
45 // If undefined, defaults to '' (nothing) and '...' (three periods).
46 //define("RC_SEPARATOR_A", ' . . . ');
47 //define("RC_SEPARATOR_B", ' --');
48
49 // Controls whether the '?' appears before or after UnknownWikiWords.
50 // The PhpWiki default is for the '?' to appear before.
51 //define('WIKIMARK_AFTER', true);
52
53
54 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
55 // (c-file-style: "gnu")
56 // Local Variables:
57 // mode: php
58 // tab-width: 8
59 // c-basic-offset: 4
60 // c-hanging-comment-ender-p: nil
61 // indent-tabs-mode: nil
62 // End:   
63 ?>