]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
initial changes for themes overhaul, /images moved to /themes/default/images
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.12 2002-01-17 05:46:19 carstenklapp Exp $');
4
5 /**
6  * You can use this as a template to copy for designing new
7  * themes.
8  */
9
10 // To activate this theme, specify this setting in index.php:
11 $theme="default";
12 // To deactivate themes, comment out all the $theme=lines in index.php.
13
14 // CSS file defines fonts, colors and background images for this
15 // style.  The companion '*-heavy.css' file isn't defined, it's just
16 // expected to be in the same directory that the base style is in.
17 /*
18 $CSS_DEFAULT = "PhpWiki";
19
20 $CSS_URLS = array_merge($CSS_URLS,
21                         array("$CSS_DEFAULT" => "themes/$theme/${CSS_DEFAULT}.css"));
22 */
23
24 // Logo image appears on every page and links to the HomePage.
25 $logo = "themes/$theme/images/logo.png";
26
27 // RSS logo icon (path relative to index.php)
28 // If this is left blank (or unset), the default "images/rss.png"
29 // will be used.
30 $rssicon = "themes/$theme/images/RSS.png";
31
32 // Signature image which is shown after saving an edited page.  If
33 // this is left blank, any signature defined in index.php will be
34 // used. If it is not defined by index.php or in here then the "Thank
35 // you for editing..." screen will be omitted.
36 $SignatureImg = "themes/$theme/images/signature.png";
37
38 // This defines separators used in RecentChanges and RecentEdits lists.
39 // If undefined, defaults to '' (nothing) and '...' (three periods).
40 //define("RC_SEPARATOR_A", ' . . . ');
41 //define("RC_SEPARATOR_B", ' --');
42
43 // Controls whether the '?' appears before or after UnknownWikiWords.
44 // The PhpWiki default is for the '?' to appear before.
45 //define('WIKIMARK_AFTER', true);
46
47 // If this theme defines any templates, they will completely override
48 // whatever templates have been defined in index.php.
49 /*
50 $templates = array(
51                    'BROWSE'   => "themes/$theme/templates/browse.html",
52                    'EDITPAGE' => "themes/$theme/templates/editpage.html",
53                    'MESSAGE'  => "themes/$theme/templates/message.html"
54                    );
55 */
56
57 // If this theme defines any custom link icons, they will completely
58 // override any link icon settings defined in index.php.
59 /*
60 $URL_LINK_ICONS = array(
61                         'http'      => "themes/$theme/images/http.png",
62                         'https'     => "themes/$theme/images/https.png",
63                         'ftp'       => "themes/$theme/images/ftp.png",
64                         'mailto'    => "themes/$theme/images/mailto.png",
65                         'interwiki' => "themes/$theme/images/interwiki.png",
66                         '*'         => "themes/$theme/images/url.png"
67                         );
68 */
69
70 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
71 // (c-file-style: "gnu")
72 // Local Variables:
73 // mode: php
74 // tab-width: 8
75 // c-basic-offset: 4
76 // c-hanging-comment-ender-p: nil
77 // indent-tabs-mode: nil
78 // End:   
79 ?>