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 00028 class datetimeSettings extends model { 00029 00035 function __construct() { 00036 00037 $id = 1; 00038 $this->_tbl_data = TBL_SYS_DATETIME_SETTINGS; 00039 00040 parent::__construct($id); 00041 00042 date_default_timezone_set($this->timezone); 00043 00044 } 00045 00046 } 00047 00048 ?>