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