]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
Added rssicon. Commented out all variables to prevent problems in case someone unwitt...
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.9 2002-01-11 22:43:57 carstenklapp Exp $');
4
5 /**
6  * This is really just a template to copy for designing new
7  * themes. The real "default" theme is built into index.php, none of
8  * the variables here point to any actual files.
9  */
10
11 // To activate this theme, specify this setting in index.php:
12 //$theme="default";
13 // To deactivate themes, comment out all the $theme=lines in index.php.
14
15 // CSS file defines fonts, colors and background images for this
16 // style.  The companion '*-heavy.css' file isn't defined, it's just
17 // expected to be in the same directory that the base style is in.
18 /*
19 $CSS_DEFAULT = "PhpWiki";
20
21 $CSS_URLS = array_merge($CSS_URLS,
22                         array("$CSS_DEFAULT" => "themes/$theme/${CSS_DEFAULT}.css"));
23 */
24
25 // Logo image appears on every page and links to the HomePage.
26 //$logo = "themes/$theme/wikibase.png";
27
28 // RSS logo icon (path relative to index.php)
29 // If this is left blank (or unset), the default "images/rss.png"
30 // will be used.
31 //$rssicon = "themes/$theme/rss.png";
32
33 // Signature image which is shown after saving an edited page.  If
34 // this is left blank, any signature defined in index.php will be
35 // used. If it is not defined by index.php or in here then the "Thank
36 // you for editing..." screen will be omitted.
37 //$SignatureImg = "themes/$theme/signature.png";
38
39 // If this theme defines any templates, they will completely override
40 // whatever templates have been defined in index.php.
41 /*
42 $templates = array(
43                    'BROWSE'   => "themes/$theme/templates/browse.html",
44                    'EDITPAGE' => "themes/$theme/templates/editpage.html",
45                    'MESSAGE'  => "themes/$theme/templates/message.html"
46                    );
47 */
48
49 // If this theme defines any custom link icons, they will completely
50 // override any link icon settings defined in index.php.
51 /*
52 $URL_LINK_ICONS = array(
53                         'http'      => "themes/$theme/icons/http.png",
54                         'https'     => "themes/$theme/icons/https.png",
55                         'ftp'       => "themes/$theme/icons/ftp.png",
56                         'mailto'    => "themes/$theme/icons/mailto.png",
57                         'interwiki' => "themes/$theme/icons/interwiki.png",
58                         '*'         => "themes/$theme/icons/zapg.png"
59                         );
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 ?>