20"; $tpp = !empty($_GET['tpp']) ? $_GET['tpp'] : '20'; $start_limit = ($page - 1) * $ppp; $dateline = $_GET['dateline'] ? $_GET['dateline'] : '604800'; $dateline_options = ''; foreach(array('all', '604800', '2592000', '7776000') as $v) { $selected = ''; if($dateline == $v) { $selected = "selected='selected'"; } $dateline_options .= "'; loadcache('portalcategory'); foreach($_G['cache']['portalcategory'] as $cat) { $selected = ''; if($cat['catid'] == $_GET['catid']) { $selected = 'selected="selected"'; } $cat_select .= ""; } $cat_select = ""; } $articlecomment_status = 1; if($_GET['filter'] == 'ignore') { $articlecomment_status = 2; } showformheader("moderate&operation=$operation"); showtableheader('search'); if($operation == 'articlecomments') { showtablerow('', array('width="60"', 'width="160"', 'width="60"', 'width="200"', 'width="60"'), array( cplang('username'), "", cplang('moderate_article_category'), $cat_select, cplang('moderate_content_keyword'), "", ) ); } else { showtablerow('', array('width="60"', 'width="160"', 'width="60"'), array( cplang('username'), "", cplang('moderate_content_keyword'), "", ) ); } showtablerow('', $operation == 'articlecomments' ? array('width="60"', 'width="160"', 'width="60"', 'colspan="3"') : array('width="60"', 'width="160"', 'width="60"'), array( "$lang[perpage]", "", "$lang[moderate_bound]", " " ) ); showtablefooter(); $pagetmp = $page; $modcount = C::t('common_moderate')->fetch_all_for_portalcomment($idtype, $tablename, $moderatestatus, $_GET['catid'], $_GET['username'], $dateline, 1, $_GET['keyword']); do { $start_limit = ($pagetmp - 1) * $tpp; $query = C::t('common_moderate')->fetch_all_for_portalcomment($idtype, $tablename, $moderatestatus, $_GET['catid'], $_GET['username'], $dateline, 0, $_GET['keyword'], $start_limit, $tpp); $pagetmp = $pagetmp - 1; } while($pagetmp > 0 && count($query) == 0); $page = $pagetmp + 1; $multipage = multi($modcount, $tpp, $page, ADMINSCRIPT."?action=moderate&operation=$operation&filter=$filter&modfid=$modfid&ppp=$tpp&showcensor=$showcensor"); echo '

'.cplang('moderate_all_expand').' '.cplang('moderate_all_fold').'

'; showtableheader(); $censor = & discuz_censor::instance(); $censor->highlight = '#FF0000'; require_once libfile('function/misc'); foreach($query as $articlecomment) { $articlecomment['dateline'] = dgmdate($articlecomment['dateline']); if($showcensor) { $censor->check($articlecomment['title']); $censor->check($articlecomment['message']); } $articlecomment_censor_words = $censor->words_found; if(count($articlecomment_censor_words) > 3) { $articlecomment_censor_words = array_slice($articlecomment_censor_words, 0, 3); } $articlecomment['censorwords'] = implode(', ', $articlecomment_censor_words); $articlecomment['modarticlekey'] = modauthkey($articlecomment['aid']); $articlecomment['modarticlecommentkey'] = modauthkey($articlecomment['cid']); if(count($articlecomment_censor_words)) { $articlecomment_censor_text = "({$articlecomment['censorwords']})"; } else { $articlecomment_censor_text = ''; } showtagheader('tbody', '', true, 'hover'); showtablerow("id=\"mod_$articlecomment[cid]_row1\"", array("id=\"mod_$articlecomment[cid]_row1_op\" rowspan=\"3\" class=\"rowform threadopt\" style=\"width:80px;\"", '', 'width="120"', 'width="55"'), array( "", "

$articlecomment[title] $articlecomment_censor_text

", "

$articlecomment[username]

$articlecomment[dateline]

", "$lang[view] $lang[edit]", )); showtablerow("id=\"mod_$articlecomment[cid]_row2\"", 'colspan="4" style="padding: 10px; line-height: 180%;"', '
'.$articlecomment['message'].'
'); showtablerow("id=\"mod_$articlecomment[cid]_row3\"", 'class="threadopt threadtitle" colspan="4"', "$lang[validate] | $lang[delete] | $lang[ignore]"); showtagfooter('tbody'); } showsubmit('modsubmit', 'submit', '', ''.cplang('moderate_all_validate').'  '.cplang('moderate_all_delete').'  '.cplang('moderate_all_ignore').'  '.cplang('moderate_all_cancel').'', $multipage, false); showtablefooter(); showformfooter(); } else { $moderation = array('validate' => array(), 'delete' => array(), 'ignore' => array()); $validates = $deletes = $ignores = 0; if(is_array($moderate)) { foreach($moderate as $cid => $act) { $moderation[$act][] = $cid; } } if($moderation['validate']) { $validates = C::t('portal_comment')->update($moderation['validate'], array('status' => '0')); updatemoderate($idtype.'_cid', $moderation['validate'], 2); } if($moderation['delete']) { $validates = C::t('portal_comment')->delete($moderation['delete']); updatemoderate($idtype.'_cid', $moderation['delete'], 2); } if($moderation['ignore']) { $validates = C::t('portal_comment')->update($ignore_cids, array('status' => '2')); updatemoderate($idtype.'_cid', $moderation['ignore'], 1); } if($_GET['fast']) { echo callback_js($_GET['cid']); exit; } else { cpmsg('moderate_'.$operation.'_succeed', "action=moderate&operation=$operation&page=$page&filter=$filter&dateline={$_GET['dateline']}&username={$_GET['username']}&keyword={$_GET['keyword']}&catid={$_GET['catid']}&tpp={$_GET['tpp']}&showcensor=$showcensor", 'succeed', array('validates' => $validates, 'ignores' => $ignores, 'deletes' => $deletes)); } } ?>