_table = 'common_member_crime'; $this->_pk = 'cid'; parent::__construct(); } public function fetch_all_by_uid($uid) { return $uid ? DB::fetch_all('SELECT * FROM %t WHERE uid=%d ORDER BY dateline DESC', array($this->_table, $uid), $this->_pk) : array(); } public function count_by_uid_action($uid, $action) { return $uid ? DB::result_first('SELECT COUNT(*) FROM %t WHERE uid=%d AND action=%d', array($this->_table, $uid, $action)) : 0; } public function count_by_where($where) { return $where ? DB::result_first('SELECT COUNT(*) FROM %t %i ', array($this->_table, $where)) : $this->count(); } public function fetch_all_by_where($where, $start = 0, $limit = 0) { return DB::fetch_all('SELECT * FROM %t %i ORDER BY dateline DESC '.DB::limit($start, $limit), array($this->_table, $where)); } public function fetch_all_by_uid_action($uid, $action) { return DB::fetch_all('SELECT * FROM %t WHERE '.DB::field('uid', $uid).' AND '.DB::field('action', $action).' ORDER BY dateline', array($this->_table)); } public function fetch_all_by_cid($cid, $action, $limit) { if(!$cid) { return DB::fetch_all('SELECT * FROM %t '.($action ? 'WHERE '.DB::field('action', $action) : '').' ORDER BY cid DESC '.DB::limit($limit), array($this->_table), $this->_pk); } else { return DB::fetch_all('SELECT * FROM %t WHERE '.DB::field('cid', $cid, '<').($action ? ' AND '.DB::field('action', $action) : '').' ORDER BY cid DESC '.DB::limit($limit), array($this->_table), $this->_pk); } } public function delete_by_uid($uids) { if(!$uids){ return null; } DB::delete($this->_table, DB::field('uid', $uids)); } } ?>