Files
web-discuz/source/class/table/table_common_report.php
2025-06-27 21:04:18 +08:00

57 lines
1.9 KiB
PHP
Executable File

<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_common_report.php 27449 2012-02-01 05:32:35Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_common_report extends discuz_table
{
public function __construct() {
$this->_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($ids = null, $force_from_db = false, $null1 = 0, $null2 = 0) {
if (defined('DISCUZ_DEPRECATED')) {
throw new Exception('NotImplementedException');
return parent::fetch_all($ids, $force_from_db);
} else {
$ids = $ids === null ? 0 : $ids;
$force_from_db = $force_from_db === false ? 100 : $force_from_db;
return $this->fetch_all_report($ids, $force_from_db, $null1, $null2);
}
}
public function fetch_all_report($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('<br>', message, %s), num=num+1 WHERE id=%d", array($this->_table, $message, $id));
}
}
?>