Jeff PHP framework
0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
|
00001 <?php 00034 class whiteTheme extends theme implements Itheme { 00035 00041 function __construct() { 00042 00043 parent::__construct('white'); 00044 00045 } 00046 00052 public function getImage() { 00053 return relativePath(dirname(__FILE__)).'/img/white.jpg'; 00054 } 00055 00061 public function getName() { 00062 return __("WhiteTheme"); 00063 } 00064 00070 public function getDescription() { 00071 return __("WhiteThemeDescription"); 00072 } 00073 } 00074 00075 ?>