]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/themeinfo.php
Finished up get/setButtonSeparator functions.
[SourceForge/phpwiki.git] / themes / default / themeinfo.php
1 <?php
2 rcs_id('$Id: themeinfo.php,v 1.15 2002-01-19 00:04:50 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 /*
22  * You may adjust the formats used for formatting dates and times
23  * below.  (These examples give the default formats.)
24  * Formats are given as format strings to PHP strftime() function See
25  * http://www.php.net/manual/en/function.strftime.php for details.
26  */
27 //$Theme->setDateTimeFormat("%B %e, %Y");   // may contain time of day
28 //$Theme->setDateFormat("%B %e, %Y");       // must not contain time
29
30 /*
31  * Link icons.
32  */
33 $Theme->setLinkIcon('http');
34 $Theme->setLinkIcon('https');
35 $Theme->setLinkIcon('ftp');
36 $Theme->setLinkIcon('mailto');
37 $Theme->setLinkIcon('interwiki');
38 $Theme->setLinkIcon('*', 'url');
39
40 //$Theme->setButtonSeparator(' | ');
41
42 // This defines separators used in RecentChanges and RecentEdits lists.
43 // If undefined, defaults to '' (nothing) and '...' (three periods).
44 //define("RC_SEPARATOR_A", '. . . ');
45 //define("RC_SEPARATOR_B", '. . . . . ');
46
47 // Controls whether the '?' appears before or after UnknownWikiWords.
48 // The PhpWiki default is for the '?' to appear before.
49 //define('WIKIMARK_AFTER', true);
50
51 // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
52 // (c-file-style: "gnu")
53 // Local Variables:
54 // mode: php
55 // tab-width: 8
56 // c-basic-offset: 4
57 // c-hanging-comment-ender-p: nil
58 // indent-tabs-mode: nil
59 // End:   
60 ?>