_table = 'forum_sofa'; $this->_pk = 'tid'; parent::__construct(); } public function range($start = 0, $limit = 20) { return DB::fetch_all('SELECT * FROM %t ORDER BY tid DESC %i', array($this->_table, DB::limit($start, $limit)), $this->_pk); } public function fetch_all_by_fid($fid, $start = 0, $limit = 20) { $fid = dintval($fid, true); return DB::fetch_all('SELECT * FROM %t WHERE fid=%d ORDER BY tid DESC %i', array($this->_table, $fid, DB::limit($start, $limit)), $this->_pk); } } ?>