]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
added $ID$ line for CVS
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2
3 rcs_id('$Id: themeinfo.php,v 1.5 2001-12-27 18:11:49 carstenklapp Exp $');
4
5 // FIXME: these files are moved to a subfolder in /templates
6 // e.g. /templates/vanilla so relative paths to index.php
7 // should be irrelevant.
8
9 // The current .htaccess in /templates generates an error in apache 1.3.20.
10 // It should be removed or changed to allow access for themes to work.
11
12 // If you specify a relative URL for the CSS and images,
13 // the are interpreted relative to DATA_PATH (see below).
14 // (The default value of DATA_PATH is the directory in which
15 // index.php (this file) resides.)
16
17 //use this setting in index.php:
18 //$theme="default";
19
20 // CSS location
21 //
22 // Note that if you use the stock phpwiki style sheet, 'phpwiki.css',
23 // you should make sure that it's companion 'phpwiki-heavy.css'
24 // is installed in the same directory that the base style file is.
25 $CSS_URL = "themes/$theme/phpwiki.css";
26
27 // logo image
28 $logo = "themes/$theme/wikibase.png";
29
30 // Signature image which is shown after saving an edited page
31 // If this is left blank (or unset), the signature will be omitted.
32 $SignatureImg = "themes/$theme/signature.png";
33
34 $templates = array('BROWSE' =>    "themes/$theme/templates/browse.html",
35                    'EDITPAGE' =>  "themes/$theme/templates/editpage.html",
36                    'MESSAGE' =>   "themes/$theme/templates/message.html");
37
38 $URL_LINK_ICONS = array(
39                     'http'      => "themes/$theme/icons/http.png",
40                     'https'     => "themes/$theme/icons/https.png",
41                     'ftp'       => "themes/$theme/icons/ftp.png",
42                     'mailto'    => "themes/$theme/icons/mailto.png",
43                     'interwiki' => "themes/$theme/icons/interwiki.png",
44                     '*'         => "themes/$theme/icons/zapg.png"
45                     );
46
47 rcs_id('$Id: themeinfo.php,v 1.5 2001-12-27 18:11:49 carstenklapp Exp $');
48
49 // (c-file-style: "gnu")
50 // Local Variables:
51 // mode: php
52 // tab-width: 8
53 // c-basic-offset: 4
54 // c-hanging-comment-ender-p: nil
55 // indent-tabs-mode: nil
56 // End:   
57 ?>