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