blob: ce5828fdc1bb51d0ef63f943bcc7c7c60e0fb5b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
// $Id$
class Theme_example extends BaseTheme {
function system($field) {
$system["name"] = "Stone Age";
$system["author"] = "Dries";
$system["description"] = "Internet explorer, Netscape, Opera, Lynx";
return $system[$field];
}
}
?>
|