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