.* protected $_disable_wild_select = TRUE; // Suppress ORMs inclusion of . to column joins protected $_disable_join_table_name = TRUE; // Suppress ORMs use of limit protected $_disable_limit = TRUE; // Enable the formating of columns protected $_object_formated = array(); protected $_formated = FALSE; protected $_formats = array(); // Load our values into the ORM object public function load_object(array $values) { return parent::_load_values($values); } public static function date($date,$format) { return $date ? date($format,strtotime($date)) : ''; } } ?>