TUTOSMain Page | About | Help | FAQ | Special pages | Log in
The Free Knowledgebase
Printable version | Disclaimers | Privacy policy

Customize

From TUTOS

Contents

Language

Currencies

Timezones

TUTOS can display different timezones for each user. The timezones are stored in a PHP array defined in config.php:

$tutos[timezones] = array();

The first timezone in this list is used as a default. On linux you may find timezone names in /usr/share/zoneinfo/ .

!!Important!! Timezones in TUTOS must be known to your OS !!

Windows User:

 $tutos[timezones][] = "EST5EDT";
 $tutos[timezones][] = "CST6CDT";
 $tutos[timezones][] = "MST7MDT";
 $tutos[timezones][] = "PST8PDT";

"normal" Linux User:

 $tutos[timezones][] = "Europe/London";
 $tutos[timezones][] = "Europe/Berlin";
 $tutos[timezones][] = "Europe/Warsaw";
 $tutos[timezones][] = "Europe/Rome";
 $tutos[timezones][] = "Europe/Paris";
 $tutos[timezones][] = "Europe/Moscow";
 $tutos[timezones][] = "Europe/Helsinki";
 $tutos[timezones][] = "GMT";
 $tutos[timezones][] = "US/Pacific";
 $tutos[timezones][] = "US/Central";
 $tutos[timezones][] = "US/Eastern";
 $tutos[timezones][] = "US/Mountain";
 $tutos[timezones][] = "US/Hawaii";
 $tutos[timezones][] = "Asia/Singapore";
 $tutos[timezones][] = "Asia/Hong_Kong";
 $tutos[timezones][] = "Asia/Tehran";
 $tutos[timezones][] = "Asia/Tokyo";
 $tutos[timezones][] = "Australia/Sydney";
 $tutos[timezones][] = "Australia/Perth";


Themes

TUTOS can display its pages using different themes. Themenames are stored in a PHP array defined in config.php:

$tutos[themes] = array();
$tutos[themes][] = "blue";
$tutos[themes][] = "tutos";
$tutos[themes][] = "red";
$tutos[themes][] = "white";

The first theme in this list is used as a default. Addtional themes may be provided on the TUTOS download site. Themes are stored in the [tutoshome]/html and [tutoshome]/php/layout subdirectories.

Layouts

TUTOS can display its pages using different layouts. Layoutnames are stored in a PHP array defined in config.php:

$tutos[layouts] = array();
$tutos[layouts][] = "new_layout";
$tutos[layouts][] = "classic_layout";
$tutos[layouts][] = "test_layout";

The first layout in this list is used as a default. Addtional layout engines may be provided on the TUTOS download site. Layout scripts are stored in the [tutoshome]/php/layout subdirectory.

Retrieved from "http://wiki.tutos.org/index.php/Customize"

This page has been accessed 5,805 times. This page was last modified 09:08, 10 April 2007.
Content is available under GNU Free Documentation License 1.2.


Find

Browse
Main Page
Recent changes
Random page
Help
Donations
Edit
View source
Editing help
This page
Discuss this page
Post a comment
Printable version
Context
Page history
What links here
Related changes
My pages
Log in / create account
Special pages
New pages
File list
Statistics
Bug reports
More...