extends DBObject { static $staticclass; function __construct ($ID = NULL) { $this->ID = $ID; parent::__construct(); } function __destruct () { parent::__destruct(); } static function table () { self::staticload (__CLASS__); return parent::table (func_get_args()); } static function populate ($values = NULL, $sortBy = NULL, $limit = NULL, $offset = NULL) { self::staticload (__CLASS__); return parent::populate (__CLASS__, is_array (self::$staticclass->table) ? self::$staticclass->table[0] : self::$staticclass->table, $values, $sortBy, $limit, $offset); } } ?>