00001 <?php
00002
00015
00016
00017
00018 import('classes.plugins.ThemePlugin');
00019
00020 class UncommonThemePlugin extends ThemePlugin {
00026 function getName() {
00027 return 'UncommonThemePlugin';
00028 }
00029
00030 function getDisplayName() {
00031 return 'Uncommon Theme';
00032 }
00033
00034 function getDescription() {
00035 return 'Chunky, blue, solid layout';
00036 }
00037
00038 function getStylesheetFilename() {
00039 return 'uncommon.css';
00040 }
00041 function getLocaleFilename($locale) {
00042 return null;
00043 }
00044 }
00045
00046 ?>