Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
interface.theme.php
Go to the documentation of this file.
00001 <?php
00054 interface Itheme {
00055 
00061         public function name();
00062 
00068         public function path();
00069 
00075         public function dftPath();
00076 
00082         public function viewPath();
00083 
00089         public function dftViewPath();
00090 
00096         public function getTemplate();
00097 
00104         public function setTpl($tpl);
00105 
00111         public function getCss();
00112 
00118         public function getJs();
00119 
00125         public function getName();
00126         
00132         public function getDescription();
00133 
00139         public function getImage();
00140 
00141 }
00142 
00143 ?>