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