diff options
Diffstat (limited to 'themes/example/example.theme')
-rw-r--r-- | themes/example/example.theme | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index 90c22e5cd..aca89d1ae 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -1,8 +1,16 @@ <?php // $Id$ - class Theme_example extends BaseTheme { +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]; } +} + ?>
\ No newline at end of file |