]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Hawaiian/themeinfo.php
Turned on random $SignatureImg in Hawaiian theme for testing. (odd, thought I already...
[SourceForge/phpwiki.git] / themes / Hawaiian / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.6 2002-01-07 08:10:36 carstenklapp Exp $');
4
5 /**
6  * WikiWiki Hawaiian theme for PhpWiki.
7  */
8
9 // To activate this theme, specify this setting in index.php:
10 //$theme=Hawaiian;
11 // To deactivate themes, comment out all the $theme=lines in index.php.
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 $CSS_DEFAULT = "Hawaiian";
18
19 $CSS_URLS = array_merge($CSS_URLS,
20                         array("$CSS_DEFAULT" => "themes/$theme/${CSS_DEFAULT}.css"));
21
22
23 // Logo image appears on every page and links to the HomePage.
24 $logo = "themes/$theme/PalmBeach.jpg";
25
26 // RSS logo icon (path relative to index.php)
27 // If this is left blank (or unset), the default "images/rss.png"
28 // will be used.
29 //$rssicon = "images/rss.png";
30
31 // Signature image which is shown after saving an edited page.  If
32 // this is left blank, any signature defined in index.php will be
33 // used. If it is not defined by index.php or in here then the "Thank
34 // you for editing..." screen will be omitted.
35 //$SignatureImg = "themes/$theme/pictures/SubmersiblePiscesV.jpg"; #for Steve
36 $SignatureImg = "themes/$theme/WaterFall.jpg";
37 // If you want to see more than just the waterfall let a random
38 // picture be chosen for the signature image:
39 include("themes/$theme/pictures/random.php");
40
41 // If this theme defines any templates, they will completely override
42 // whatever templates have been defined in index.php.
43 /*
44 $templates = array(
45                    'BROWSE'   => "themes/$theme/templates/browse.html",
46                    'EDITPAGE' => "themes/$theme/templates/editpage.html",
47                    'MESSAGE'  => "themes/$theme/templates/message.html"
48                    );
49 */
50
51 // If this theme defines any custom link icons, they will completely
52 // override any link icon settings defined in index.php.
53 $URL_LINK_ICONS = array(
54                         /* 'http'   => "themes/$theme/http.png",   */
55                         /* 'https'  => "themes/$theme/https.png",  */
56                         /* 'ftp'    => "themes/$theme/ftp.png",    */
57                         /* 'mailto' => "themes/$theme/mailto.png", */
58                         'interwiki' => "themes/$theme/interwiki.png",
59                         '*'         => "themes/$theme/flower.png"
60                         );
61
62 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
63 // (c-file-style: "gnu")
64 // Local Variables:
65 // mode: php
66 // tab-width: 8
67 // c-basic-offset: 4
68 // c-hanging-comment-ender-p: nil
69 // indent-tabs-mode: nil
70 // End:   
71 ?>