]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
New autosplitWikiWords property of Theme. Comments cleanup.
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2 rcs_id('$Id: themeinfo.php,v 1.18 2002-01-19 20:38:09 carstenklapp 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 //$Theme->addImageAlias('signature', 'signature.png');
32
33 /*
34  * Link icons.
35  */
36 $Theme->setLinkIcon('http');
37 $Theme->setLinkIcon('https');
38 $Theme->setLinkIcon('ftp');
39 $Theme->setLinkIcon('mailto');
40 $Theme->setLinkIcon('interwiki');
41 $Theme->setLinkIcon('*', 'url');
42
43 //$Theme->setButtonSeparator(' | ');
44
45 /**
46  * WikiWords can automatically be split by inserting spaces between
47  * the words. The default is to leave WordsSmashedTogetherLikeSo.
48  */
49 //$Theme->setAutosplitWikiWords(false);
50
51 /*
52  * You may adjust the formats used for formatting dates and times
53  * below.  (These examples give the default formats.)
54  * Formats are given as format strings to PHP strftime() function See
55  * http://www.php.net/manual/en/function.strftime.php for details.
56  */
57 //$Theme->setDateTimeFormat("%B %e, %Y");   // may contain time of day
58 //$Theme->setDateFormat("%B %e, %Y");       // must not contain time
59
60
61 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
62 // (c-file-style: "gnu")
63 // Local Variables:
64 // mode: php
65 // tab-width: 8
66 // c-basic-offset: 4
67 // c-hanging-comment-ender-p: nil
68 // indent-tabs-mode: nil
69 // End:   
70 ?>