Jeff PHP framework  0.99
Modular, extensible, OOP, MVC, lightweight php framework designed to ease the programmers in the development of web applications.
siteSettings.php
Go to the documentation of this file.
00001 <?php
00028 class siteSettings extends model {
00029         
00035         function __construct() {
00036         
00037                 $id = 1;
00038                 $this->_tbl_data = TBL_SYS_SETTINGS;
00039 
00040                 parent::__construct($id);
00041 
00042         }
00043 
00044 }
00045 
00046 ?>