]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
Disable signature in default theme.
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2 rcs_id('$Id: themeinfo.php,v 1.19 2002-01-24 01:01:58 dairiki Exp $');
3
4 /*
5  * This file defines the default appearance ("theme") of PhpWiki.
6  */
7
8 require_once('lib/Theme.php');
9
10 $Theme = new Theme('default');
11
12 // CSS file defines fonts, colors and background images for this
13 // style.  The companion '*-heavy.css' file isn't defined, it's just
14 // expected to be in the same directory that the base style is in.
15
16 $Theme->setDefaultCSS('PhpWiki', 'phpwiki.css');
17 $Theme->addAlternateCSS(_("Printer"), 'phpwiki-printer.css', 'print, screen');
18 $Theme->addAlternateCSS(_("Modern"), 'phpwiki-modern.css');
19
20 /**
21  * The logo image appears on every page and links to the HomePage.
22  */
23 //$Theme->addImageAlias('logo', 'logo.png');
24
25 /**
26  * The Signature image is shown after saving an edited page. If this
27  * is not set, any signature defined in index.php will be used. If it
28  * is not defined by index.php or in here then the "Thank you for
29  * editing..." screen will be omitted.
30  */
31
32 // Comment this next line out to enable signature.
33 $Theme->addImageAlias('signature', false);
34
35 /*
36  * Link icons.
37  */
38 $Theme->setLinkIcon('http');
39 $Theme->setLinkIcon('https');
40 $Theme->setLinkIcon('ftp');
41 $Theme->setLinkIcon('mailto');
42 $Theme->setLinkIcon('interwiki');
43 $Theme->setLinkIcon('*', 'url');
44
45 //$Theme->setButtonSeparator(' | ');
46
47 /**
48  * WikiWords can automatically be split by inserting spaces between
49  * the words. The default is to leave WordsSmashedTogetherLikeSo.
50  */
51 //$Theme->setAutosplitWikiWords(false);
52
53 /*
54  * You may adjust the formats used for formatting dates and times
55  * below.  (These examples give the default formats.)
56  * Formats are given as format strings to PHP strftime() function See
57  * http://www.php.net/manual/en/function.strftime.php for details.
58  */
59 //$Theme->setDateTimeFormat("%B %e, %Y");   // may contain time of day
60 //$Theme->setDateFormat("%B %e, %Y");       // must not contain time
61
62
63 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
64 // (c-file-style: "gnu")
65 // Local Variables:
66 // mode: php
67 // tab-width: 8
68 // c-basic-offset: 4
69 // c-hanging-comment-ender-p: nil
70 // indent-tabs-mode: nil
71 // End:   
72 ?>