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 .= "'; foreach(array('uid', 'blogid', 'picid', 'sid') as $v) { $selected = ''; if($_GET['idtype'] == $v) { $selected = 'selected="selected"'; } $idtype_select .= ""; } $comment_status = 1; if($_GET['filter'] == 'ignore') { $comment_status = 2; } showformheader("moderate&operation=comments"); showboxheader('search'); showtableheader(); showtablerow('', array('width="100"', 'width="200"', 'width="100"'), array( cplang('username'), "", cplang('moderate_content_keyword'), "", ) ); showtablerow('', array('width="100"', 'width="200"', 'width="100"'), array( "{$lang['perpage']}", "", "{$lang['moderate_bound']}", " " ) ); showtablefooter(); showboxfooter(); $pagetmp = $page; $modcount = C::t('common_moderate')->count_by_search_for_commnet($_GET['idtype'], $moderatestatus, $_GET['username'], (($dateline && $dateline != 'all') ? (TIMESTAMP - $dateline) : null), $_GET['keyword']); do { $start_limit = ($pagetmp - 1) * $tpp; $commentarr = C::t('common_moderate')->fetch_all_by_search_for_comment($_GET['idtype'], $moderatestatus, $_GET['username'], (($dateline && $dateline != 'all') ? (TIMESTAMP - $dateline) : null), $_GET['keyword'], $start_limit, $tpp); $pagetmp = $pagetmp - 1; } while($pagetmp > 0 && empty($commentarr)); $page = $pagetmp + 1; $multipage = multi($modcount, $tpp, $page, ADMINSCRIPT."?action=moderate&operation=comments&filter=$filter&dateline={$_GET['dateline']}&username={$_GET['username']}&keyword={$_GET['keyword']}&idtype={$_GET['idtype']}&ppp=$tpp&showcensor=$showcensor"); showtableheader('', 'nobottom'); echo '
'.cplang('moderate_all_expand').' '.cplang('moderate_all_fold').'
{$comment['ip']}
", $commenttype.'', "{$comment['dateline']}
", "{$lang['view']} {$lang['edit']}", )); showtablerow("id=\"mod_{$comment['cid']}_row2\"", 'colspan="4" style="padding: 10px; line-height: 180%;"', ' '); showtablerow("id=\"mod_{$comment['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; $moderatedata = array(); if(is_array($moderate)) { foreach($moderate as $cid => $act) { $moderation[$act][] = $cid; $moderatedata[$act][$_GET['idtypes'][$cid]][] = $cid; } } foreach($moderatedata as $act => $typeids) { foreach($typeids as $idtype => $ids) { $op = $act == 'ignore' ? 1 : 2; updatemoderate($idtype.'_cid', $ids, $op); } } if($moderation['validate']) { $validates = C::t('home_comment')->update_comment($moderation['validate'], array('status' => '0')); } if(!empty($moderation['delete'])) { require_once libfile('function/delete'); $comments = deletecomments($moderation['delete']); $deletes = count($comments); } if($moderation['ignore']) { $ignores = C::t('home_comment')->update_comment($moderation['ignore'], array('status' => '2')); } if($_GET['fast']) { echo callback_js($_GET['cid']); exit; } else { cpmsg('moderate_comments_succeed', "action=moderate&operation=comments&page=$page&filter=$filter&dateline={$_GET['dateline']}&username={$_GET['username']}&keyword={$_GET['keyword']}&idtype={$_GET['idtype']}&tpp={$_GET['tpp']}&showcensor=$showcensor", 'succeed', array('validates' => $validates, 'ignores' => $ignores, 'deletes' => $deletes)); } } ?>