blob: aca89d1ae8ea7f0217210a52272513b52a466ff3 (
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 Buytaerts";
$system["description"] = "Internet explorer, Netscape, Opera, Lynx";
return $system[$field];
}
}
?>
|