discuz!X2管理面板的“管理举报”功能二次开发修改成可以默认显示所有板块的用户举报内容
1、 修改相应模版:\template\default\forum\ modcp_report.htm 第13行:
<option value=””>{lang modcp_select_forum}</option>修改为:
<option value=”0″>{lang all}</option>
2、修改对应的程序文件:\source\include\modcp\modcp_report.php
修改的内容较多,参照标准版。
这里只贴出修改后的内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
<?php /** * [Discuz!] (C)2001-2099 Comsenz Inc. * This is NOT a freeware, use is subject to license terms * * $Id: modcp_report.php 14289 2010-10-21 11:32:50Z liulanbo $ */ if(!defined('IN_DISCUZ') || !defined('IN_MODCP')) { exit('Access Denied'); } //if(!empty($_G['fid'])) { $curcredits = $_G['setting']['creditstransextra'][8] ? $_G['setting']['creditstransextra'][8] : $_G['setting']['creditstrans']; if(submitcheck('reportsubmit')) { if($_G['gp_reportids']) { foreach($_G['gp_reportids'] as $reportid) { if(DB::result_first("SELECT COUNT(*) FROM ".DB::table('common_report')." WHERE id='$reportid' AND opuid='0'")) { $creditchange = ''; $uid = $_G['gp_reportuids'][$reportid]; if($uid != $_G['uid']) { $msg = !empty($_G['gp_msg'][$reportid]) ? '<br />'.htmlspecialchars($_G['gp_msg'][$reportid]) : ''; if(!empty($_G['gp_creditsvalue'][$reportid])) { $_G['gp_creditsvalue'][$reportid] = abs($_G['gp_creditsvalue'][$reportid]) <= 3 ? $_G['gp_creditsvalue'][$reportid] : 0; $credittag = $_G['gp_creditsvalue'][$reportid] > 0 ? '+' : ''; $creditchange = '<br />'.lang('forum/misc', 'report_msg_your').$_G['setting']['extcredits'][$curcredits]['title'].' '.$credittag.$_G['gp_creditsvalue'][$reportid]; updatemembercount($uid, array($curcredits => $_G['gp_creditsvalue'][$reportid]), true, 'RPC', $reportid); } if($creditchange || $msg) { notification_add($uid, 'report', 'report_change_credits', array('creditchange' => $creditchange, 'msg' => $msg), 1); } } $opresult = !empty($_G['gp_creditsvalue'][$reportid])? $curcredits."\t".intval($_G['gp_creditsvalue'][$reportid]) : 'ignore'; DB::query("UPDATE ".DB::table('common_report')." SET opuid='$_G[uid]', opname='$_G[username]', optime='".TIMESTAMP."', opresult='$opresult' WHERE id='$reportid'"); } } if(!empty($_G['fid'])){ showmessage('modcp_report_success', "$cpscript?mod=modcp&action=report&fid=$_G[fid]&lpp=$lpp"); }else{ showmessage('modcp_report_success', "$cpscript?mod=modcp&action=report&fid=0&lpp=$lpp"); } } } $rewardlist = ''; $report_reward = unserialize($_G['setting']['report_reward']); $offset = abs(ceil(($report_reward['max'] - $report_reward['min']) / 10)); if($report_reward['max'] > $report_reward['min']) { for($vote = $report_reward['max']; $vote >= $report_reward['min']; $vote -= $offset) { if($vote != 0) { $rewardlist .= $vote ? '<option value="'.$vote.'">'.($vote > 0 ? '+'.$vote : $vote).'</option>' : ''; } else { $rewardlist .= '<option value="0" selected>'.lang('forum/misc', 'report_noreward').'</option>'; } } } $reportlist = array(); $lpp = empty($_G['gp_lpp']) ? 20 : intval($_G['gp_lpp']); $lpp = min(200, max(5, $lpp)); $page = max(1, intval($_G['page'])); $start = ($page - 1) * $lpp; if(!empty($_G['fid'])){ $reportcount = DB::result_first("SELECT COUNT(*) FROM ".DB::table('common_report')." WHERE opuid=0 AND fid='$_G[fid]'"); $query = DB::query("SELECT * FROM ".DB::table('common_report')." WHERE opuid=0 AND fid='$_G[fid]' ORDER BY num DESC, dateline DESC LIMIT $start, $lpp"); }else{ $reportcount = DB::result_first("SELECT COUNT(*) FROM ".DB::table('common_report')." WHERE opuid=0 "); $query = DB::query("SELECT * FROM ".DB::table('common_report')." WHERE opuid=0 ORDER BY num DESC, dateline DESC LIMIT $start, $lpp"); } while($row = DB::fetch($query)) { $row['dateline'] = dgmdate($row['dateline']); $reportlist[] = $row; } if(!empty($_G['fid'])){ $multipage = multi($reportcount, $lpp, $page, "$cpscript?mod=modcp&action=report&fid=$_G[fid]&lpp=$lpp"); }else{ $multipage = multi($reportcount, $lpp, $page, "$cpscript?mod=modcp&action=report&fid=0&lpp=$lpp"); } //} ?> |