summaryrefslogtreecommitdiffstats
path: root/wp-admin/moderation.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-12 16:21:15 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-12 16:21:15 +0000
commit3a4570b0fc8b3d6339bef71d17d7701554e0bbf7 (patch)
tree2a06e5261263c68d8afd95a6328879dc289cb909 /wp-admin/moderation.php
parentb83c34a7010faee0223f6037025c350da12e05e6 (diff)
downloadwordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.gz
wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.tar.xz
wordpress-mu-3a4570b0fc8b3d6339bef71d17d7701554e0bbf7.zip
Merge with WP 2.3 - testing use only!
Move pluggable functions out of wpmu-functions and into pluggable.php, fixes #439 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1069 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/moderation.php')
-rw-r--r--wp-admin/moderation.php344
1 files changed, 182 insertions, 162 deletions
diff --git a/wp-admin/moderation.php b/wp-admin/moderation.php
index e24a9a1..2048a6e 100644
--- a/wp-admin/moderation.php
+++ b/wp-admin/moderation.php
@@ -1,206 +1,226 @@
<?php
-require_once('admin.php');
-$title = __('Moderate comments');
+require_once './admin.php';
+
+$title = __( 'Moderate Comments' );
$parent_file = 'edit-comments.php';
+
wp_enqueue_script( 'admin-comments' );
-wp_reset_vars(array('action', 'item_ignored', 'item_deleted', 'item_approved', 'item_spam', 'feelinglucky'));
+wp_reset_vars( array( 'action', 'item_ignored', 'item_deleted', 'item_approved', 'item_spam', 'feelinglucky' ) );
$comment = array();
-if (isset($_POST["comment"])) {
- foreach ($_POST["comment"] as $k => $v) {
- $comment[intval($k)] = $v;
+
+if ( isset( $_POST['comment'] ) && is_array( $_POST['comment'] ) ) {
+ foreach ( $_POST['comment'] as $k => $v ) {
+ $comment[intval( $k )] = $v;
}
}
-switch($action) {
-
-case 'update':
+if ( $action == 'update' ) {
+ check_admin_referer( 'moderate-comments' );
- check_admin_referer('moderate-comments');
-
- if ( !current_user_can('moderate_comments') )
- wp_die(__('Your level is not high enough to moderate comments.'));
+ if ( !current_user_can( 'moderate_comments' ) ) {
+ wp_die( __( 'Your level is not high enough to moderate comments.' ) );
+ }
$item_ignored = 0;
$item_deleted = 0;
$item_approved = 0;
$item_spam = 0;
- foreach($comment as $key => $value) {
- if ($feelinglucky && 'later' == $value)
- $value = 'delete';
- switch($value) {
- case 'later':
- // do nothing with that comment
- // wp_set_comment_status($key, "hold");
- ++$item_ignored;
- break;
- case 'delete':
- wp_set_comment_status($key, 'delete');
- ++$item_deleted;
- break;
- case 'spam':
- wp_set_comment_status($key, 'spam');
- ++$item_spam;
- break;
- case 'approve':
- wp_set_comment_status($key, 'approve');
- if ( get_option('comments_notify') == true ) {
- wp_notify_postauthor($key);
- }
- ++$item_approved;
- break;
+ foreach ( $comment as $k => $v ) {
+ if ( $feelinglucky && $v == 'later' ) {
+ $v = 'delete';
}
- }
- $file = basename(__FILE__);
- wp_redirect("$file?ignored=$item_ignored&deleted=$item_deleted&approved=$item_approved&spam=$item_spam");
- exit();
+ switch ( $v ) {
+ case 'later' :
+ $item_ignored++;
+ break;
-break;
+ case 'delete' :
+ wp_set_comment_status( $k, 'delete' );
+ $item_deleted++;
+ break;
-default:
+ case 'spam' :
+ wp_set_comment_status( $k, 'spam' );
+ $item_spam++;
+ break;
-require_once('admin-header.php');
+ case 'approve' :
+ wp_set_comment_status( $k, 'approve' );
-if ( isset($_GET['deleted']) || isset($_GET['approved']) || isset($_GET['ignored']) ) {
- echo "<div id='moderated' class='updated fade'>\n<p>";
- $approved = (int) $_GET['approved'];
- $deleted = (int) $_GET['deleted'];
- $ignored = (int) $_GET['ignored'];
- $spam = (int) $_GET['spam'];
- if ($approved) {
- printf(__ngettext('%s comment approved', '%s comments approved', $approved), $approved);
- echo "<br/>\n";
- }
- if ($deleted) {
- printf(__ngettext('%s comment deleted', '%s comments deleted', $deleted), $deleted);
- echo "<br/>\n";
- }
- if ($spam) {
- printf(__ngettext('%s comment marked as spam', '%s comments marked as spam', $spam), $spam);
- echo "<br/>\n";
- }
- if ($ignored) {
- printf(__ngettext('%s comment unchanged', '%s comments unchanged', $ignored), $ignored);
- echo "<br/>\n";
+ if ( get_option( 'comments_notify' ) == true ) {
+ wp_notify_postauthor( $k );
+ }
+
+ $item_approved++;
+ break;
+ }
}
- echo "</p></div>\n";
+
+ wp_redirect( basename( __FILE__ ) . '?ignored=' . $item_ignored . '&deleted=' . $item_deleted . '&approved=' . $item_approved . '&spam=' . $item_spam );
+ exit;
}
-?>
+require_once './admin-header.php';
-<div class="wrap">
+if ( !current_user_can( 'moderate_comments' ) ) {
+ echo '<div class="wrap"><p>' . __( 'Your level is not high enough to moderate comments.' ) . '</p></div>';
+ include_once './admin-footer.php';
+ exit;
+}
-<?php
-if ( current_user_can('moderate_comments') )
- $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '0'");
-else
- $comments = '';
-
-if ($comments) {
- // list all comments that are waiting for approval
- $file = basename(__FILE__);
-?>
- <h2><?php _e('Moderation Queue') ?></h2>
- <form name="approval" action="moderation.php" method="post">
- <?php wp_nonce_field('moderate-comments') ?>
- <input type="hidden" name="action" value="update" />
- <ol id="the-comment-list" class="commentlist">
-<?php
-$i = 0;
- foreach($comments as $comment) {
- ++$i;
- $comment_date = mysql2date(get_option("date_format") . " @ " . get_option("time_format"), $comment->comment_date);
- $post_title = $wpdb->get_var("SELECT post_title FROM $wpdb->posts WHERE ID='$comment->comment_post_ID'");
- if ($i % 2) $class = 'js-unapproved alternate';
- else $class = 'js-unapproved';
- echo "\n\t<li id='comment-$comment->comment_ID' class='$class'>";
- ?>
- <p><strong><?php comment_author() ?></strong> <?php if ($comment->comment_author_email) { ?>| <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_url && 'http://' != $comment->comment_author_url) { ?> | <?php comment_author_url_link() ?> <?php } ?>| <?php _e('IP:') ?> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
-<?php comment_text() ?>
-<p><?php comment_date(__('M j, g:i A')); ?> &#8212; [ <?php
-echo '<a href="comment.php?action=editcomment&amp;c='.$comment->comment_ID.'">' . __('Edit') . '</a> | ';
-echo " <a href=\"post.php?action=deletecomment&amp;p=".$comment->comment_post_ID."&amp;comment=".$comment->comment_ID."\" onclick=\"return deleteSomething( 'comment', $comment->comment_ID, '" . js_escape(sprintf(__("You are about to delete this comment by '%s'.\n'Cancel' to stop, 'OK' to delete."), $comment->comment_author )) . "', theCommentList );\">" . __('Delete') . "</a> | "; ?>
-<?php
-$post = get_post($comment->comment_post_ID);
-$post_title = wp_specialchars( $post->post_title, 'double' );
-$post_title = ('' == $post_title) ? "# $comment->comment_post_ID" : $post_title;
-?>
-<a href="<?php echo get_permalink($comment->comment_post_ID); ?>" title="<?php echo $post_title; ?>"><?php _e('View Post') ?></a> ] &#8212;
- <?php _e('Bulk action:') ?>
- <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-approve" value="approve" /> <label for="comment-<?php echo $comment->comment_ID; ?>-approve"><?php _e('Approve') ?></label> &nbsp;
- <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-spam" value="spam" /> <label for="comment-<?php echo $comment->comment_ID; ?>-spam"><?php _e('Spam') ?></label> &nbsp;
- <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-delete" value="delete" /> <label for="comment-<?php echo $comment->comment_ID; ?>-delete"><?php _e('Delete') ?></label> &nbsp;
- <input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment-<?php echo $comment->comment_ID; ?>-nothing" value="later" checked="checked" /> <label for="comment-<?php echo $comment->comment_ID; ?>-nothing"><?php _e('Defer until later') ?></label>
- </p>
-
- </li>
-<?php
- }
-?>
- </ol>
+if ( isset( $_GET['approved'] ) || isset( $_GET['deleted'] ) || isset( $_GET['spam'] ) ) {
+ $approved = isset( $_GET['approved'] ) ? (int) $_GET['approved'] : 0;
+ $deleted = isset( $_GET['deleted'] ) ? (int) $_GET['deleted'] : 0;
+ $spam = isset( $_GET['ignored'] ) ? (int) $_GET['spam'] : 0;
-<div id="ajax-response"></div>
+ if ( $approved > 0 || $deleted > 0 || $spam > 0 ) {
+ echo '<div id="moderated" class="updated fade"><p>';
-<p class="submit"><input type="submit" name="submit" value="<?php _e('Bulk Moderate Comments &raquo;') ?>" /></p>
-<script type="text/javascript">
-// <![CDATA[
-function markAllForDelete() {
- for (var i=0; i< document.approval.length; i++) {
- if (document.approval[i].value == "delete") {
- document.approval[i].checked = true;
- }
- }
-}
-function markAllForApprove() {
- for (var i=0; i< document.approval.length; i++) {
- if (document.approval[i].value == "approve") {
- document.approval[i].checked = true;
+ if ( $approved > 0 ) {
+ printf( __ngettext( '%s comment approved.', '%s comments approved.', $approved ), $approved );
+ echo '<br />';
}
- }
-}
-function markAllForDefer() {
- for (var i=0; i< document.approval.length; i++) {
- if (document.approval[i].value == "later") {
- document.approval[i].checked = true;
+
+ if ( $deleted > 0 ) {
+ printf( __ngettext( '%s comment deleted', '%s comments deleted.', $deleted ), $deleted );
+ echo '<br />';
}
- }
-}
-function markAllAsSpam() {
- for (var i=0; i< document.approval.length; i++) {
- if (document.approval[i].value == "spam") {
- document.approval[i].checked = true;
+
+ if ( $spam > 0 ) {
+ printf( __ngettext( '%s comment marked as spam', '%s comments marked as spam', $spam ), $spam );
+ echo '<br />';
}
+
+ echo '</p></div>';
}
}
-document.write('<ul><li><a href="javascript:markAllForApprove()"><?php _e('Mark all for approval'); ?></a></li><li><a href="javascript:markAllAsSpam()"><?php _e('Mark all as spam'); ?></a></li><li><a href="javascript:markAllForDelete()"><?php _e('Mark all for deletion'); ?></a></li><li><a href="javascript:markAllForDefer()"><?php _e('Mark all for later'); ?></a></li></ul>');
-// ]]>
-</script>
-
-<noscript>
- <p>
- <input name="feelinglucky" type="checkbox" id="feelinglucky" value="true" /> <label for="feelinglucky"><?php _e('Delete every comment marked "defer." <strong>Warning: This can&#8217;t be undone.</strong>'); ?></label>
- </p>
-</noscript>
-</form>
-<?php
-} else {
- // nothing to approve
- echo '<p>'.__("Currently there are no comments for you to moderate.") . "</p>\n";
-}
+
?>
+<div class="wrap">
+<?php
-</div>
+$comments = $wpdb->get_results( "SELECT * FROM $wpdb->comments WHERE comment_approved = '0'" );
-<?php
+if ( !$comments ) {
+ echo '<p>' . __( 'Currently there are no comments for you to moderate.' ) . '</p></div>';
+ include_once './admin-footer.php';
+ exit;
+}
-break;
+$total = count( $comments );
+$per = 100;
+
+if ( isset( $_GET['paged'] ) ) {
+ $page = (int) $_GET['paged'];
+} else {
+ $page = 1;
}
+$start = ( $page * $per ) - $per;
+$stop = $start + $per;
-include('admin-footer.php');
+$page_links = paginate_links( array(
+ 'base' => add_query_arg( 'paged', '%#%' ),
+ 'format' => '',
+ 'total' => ceil( $total / $per ),
+ 'current' => $page,
+ 'prev_text' => '&laquo;',
+ 'next_text' => '&raquo;'
+) );
+
+$comments = array_slice( $comments, $start, $stop );
?>
+ <h2><?php _e( 'Moderation Queue' ); ?></h2>
+
+ <?php
+ if ( $page_links ) {
+ echo '<p class="pagenav">' . $page_links . '</p>';
+ }
+ ?>
+
+ <form name="approval" id="approval" action="<?php echo basename( __FILE__ ); ?>" method="post">
+ <?php wp_nonce_field( 'moderate-comments' ); ?>
+ <input type="hidden" name="action" value="update" />
+ <ol id="the-comments-list" class="commentlist">
+ <?php
+ $i = 0;
+
+ foreach ( $comments as $comment ) {
+ $class = 'js-unapproved';
+
+ if ( $i++ % 2 ) {
+ $class .= ' alternate';
+ }
+ ?>
+ <li id="comment-<?php comment_ID(); ?>" class="<?php echo $class; ?>">
+ <p>
+ <strong><?php comment_author(); ?></strong>
+ <?php if ( !empty( $comment->comment_author_email ) ) { ?>| <?php comment_author_email_link(); ?> <?php } ?>
+ <?php if ( !empty( $comment->comment_author_url ) && $comment->comment_author_url != 'http://' ) { ?>| <?php comment_author_url_link(); ?> <?php } ?>
+ | <?php _e( 'IP:' ); ?> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP(); ?>"><?php comment_author_IP(); ?></a>
+ </p>
+
+ <p>
+ <?php comment_text(); ?>
+ </p>
+
+ <p><small>
+ <?php comment_date( __( 'M j, g:i A' ) ); ?> &#8212;
+ [ <a href="comment.php?action=editcomment&amp;c=<?php comment_ID(); ?>" title="<?php _e( 'Edit this comment' ); ?>"><?php _e( 'Edit' ); ?></a> |
+ <a href="post.php?action=deletecomment&amp;p=<?php echo $comment->comment_post_ID; ?>" title="<?php _e( 'Delete this comment' ); ?>" onclick="return deleteSomething( 'comment', <?php comment_ID(); ?>, '<?php echo js_escape( sprintf( __( "You are about to delete this comment by '%s'.\n'OK' to delete, 'Cancel' to stop." ), get_comment_author() ) ); ?>', theCommentList );"><?php _e( 'Delete' ); ?></a> ] &#8212;
+ <a href="<?php echo get_permalink( $comment->comment_post_ID ); ?>" title="<?php _e( 'View the post' ); ?>"><?php printf( __( 'View post &#8220;%s&#8221;' ), get_the_title( $comment->comment_post_ID ) ); ?></a>
+ </small></p>
+
+ <p><small>
+ <?php _e( 'Bulk action:' ); ?>
+ <label for="comment-<?php comment_ID(); ?>-approve"><input type="radio" name="comment[<?php comment_ID(); ?>]" id="comment-<?php comment_ID(); ?>-approve" value="approve" /> <?php _e( 'Approve' ); ?></label> &nbsp;
+ <label for="comment-<?php comment_ID(); ?>-spam"><input type="radio" name="comment[<?php comment_ID(); ?>]" id="comment-<?php comment_ID(); ?>-spam" value="spam" /> <?php _e( 'Spam' ); ?></label> &nbsp;
+ <label for="comment-<?php comment_ID(); ?>-delete"><input type="radio" name="comment[<?php comment_ID(); ?>]" id="comment-<?php comment_ID(); ?>-delete" value="delete" /> <?php _e( 'Delete' ); ?></label> &nbsp;
+ <label for="comment-<?php comment_ID(); ?>-nothing"><input type="radio" name="comment[<?php comment_ID(); ?>]" id="comment-<?php comment_ID(); ?>-nothing" value="later" checked="checked" /> <?php _e( 'No action' ); ?></label>
+ </small></p>
+ </li>
+ <?php
+ }
+ ?>
+ </ol>
+
+ <?php
+ if ( $page_links ) {
+ echo '<p class="pagenav">' . $page_links . '</p>';
+ }
+ ?>
+
+ <div id="ajax-response"></div>
+
+ <noscript>
+ <p class="submit">
+ <label for="feelinglucky"><input name="feelinglucky" id="feelinglucky" type="checkbox" value="true" /> <?php _e( 'Delete every comment marked &#8220;defer.&#8221; <strong>Warning: This can&#8217;t be undone.</strong>' ); ?></label>
+ </p>
+ </noscript>
+
+ <p class="submit">
+ <input type="submit" id="submit" name="submit" value="<?php _e( 'Bulk Moderate Comments &raquo;' ); ?>" />
+ </p>
+
+ <script type="text/javascript">
+ // <![CDATA[
+ function mark_all_as( what ) {
+ for ( var i = 0; i < document.approval.length; i++ ) {
+ if ( document.approval[i].value == what ) {
+ document.approval[i].checked = true;
+ }
+ }
+ }
+
+ document.write( '<p><strong><?php _e( 'Mark all:' ); ?></strong> <a href="javascript:mark_all_as(\'approve\')"><?php _e( 'Approved' ); ?></a> &ndash; <a href="javascript:mark_all_as(\'spam\')"><?php _e( 'Spam' ); ?></a> &ndash; <a href="javascript:mark_all_as(\'delete\')"><?php _e( 'Deleted' ); ?></a> &ndash; <a href="javascript:mark_all_as(\'later\')"><?php _e( 'Later' ); ?></a></p>' );
+ // ]]>
+ </script>
+ </form>
+</div>
+<?php include_once './admin-footer.php'; ?>