_table = 'common_report'; $this->_pk = 'id'; parent::__construct(); } public function fetch_count($operated = 0, $id = 0, $fid = 0) { $where = empty($operated) ? 'opuid=0' : 'opuid>0'; $idsql = $id ? DB::field('id', $id).' AND ' : ''; $fidsql = $fid ? ' AND '.DB::field('fid', $fid) : ''; return DB::result_first('SELECT count(*) FROM '.DB::table('common_report').' WHERE '.$idsql.$where.$fidsql); } public function fetch_all($start = 0, $limit = 100, $operated = 0, $fid = 0) { $where = empty($operated) ? 'opuid=0' : 'opuid>0'; $order = empty($operated) ? 'num' : 'optime'; $fidsql = $fid ? ' AND '.DB::field('fid', $fid) : ''; return DB::fetch_all("SELECT * FROM %t WHERE $where.$fidsql ORDER BY $order DESC, dateline DESC LIMIT %d, %d", array($this->_table, $start, $limit)); } public function fetch_by_urlkey($urlkey) { return DB::result_first("SELECT id FROM %t WHERE urlkey=%s AND opuid='0'", array($this->_table, $urlkey)); } public function update_num($id, $message) { DB::query("UPDATE %t SET message=CONCAT_WS('
', message, %s), num=num+1 WHERE id=%d", array($this->_table, $message, $id)); } } ?>