2003-11-12 16:22:47 +01:00
< ? php
2004-10-19 05:03:06 +02:00
require_once ( 'admin.php' );
2004-04-25 04:19:31 +02:00
$title = __ ( 'Moderate comments' );
2003-12-08 04:46:42 +01:00
$parent_file = 'edit.php' ;
2006-06-06 06:14:04 +02:00
wp_enqueue_script ( 'admin-comments' );
2003-11-12 16:22:47 +01:00
2006-07-03 21:03:37 +02:00
wp_reset_vars ( array ( 'action' , 'item_ignored' , 'item_deleted' , 'item_approved' , 'item_spam' , 'feelinglucky' ));
2003-11-12 16:22:47 +01:00
2004-01-02 01:49:13 +01:00
$comment = array ();
2004-04-21 00:56:47 +02:00
if ( isset ( $_POST [ " comment " ])) {
foreach ( $_POST [ " comment " ] as $k => $v ) {
2004-01-02 01:49:13 +01:00
$comment [ intval ( $k )] = $v ;
}
}
2003-11-12 16:22:47 +01:00
switch ( $action ) {
case 'update' :
2006-05-03 00:36:06 +02:00
check_admin_referer ( 'moderate-comments' );
2006-03-31 01:12:54 +02:00
2005-07-17 21:29:55 +02:00
if ( ! current_user_can ( 'moderate_comments' ) )
2006-07-06 00:00:03 +02:00
wp_die ( '<p>' . __ ( 'Your level is not high enough to moderate comments.' ) . '</p>' );
2003-11-12 16:22:47 +01:00
$item_ignored = 0 ;
$item_deleted = 0 ;
$item_approved = 0 ;
2005-02-11 02:52:19 +01:00
$item_spam = 0 ;
2003-11-12 16:22:47 +01:00
foreach ( $comment as $key => $value ) {
2004-09-08 10:30:18 +02:00
if ( $feelinglucky && 'later' == $value )
$value = 'delete' ;
2003-11-12 16:22:47 +01:00
switch ( $value ) {
2003-11-15 09:58:18 +01:00
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 ;
2005-02-11 02:52:19 +01:00
case 'spam' :
wp_set_comment_status ( $key , 'spam' );
++ $item_spam ;
break ;
2003-11-15 09:58:18 +01:00
case 'approve' :
wp_set_comment_status ( $key , 'approve' );
2006-08-30 23:46:31 +02:00
if ( get_option ( 'comments_notify' ) == true ) {
2003-11-15 09:58:18 +01:00
wp_notify_postauthor ( $key );
}
++ $item_approved ;
break ;
2003-11-12 16:22:47 +01:00
}
}
$file = basename ( __FILE__ );
2006-06-27 07:38:56 +02:00
wp_redirect ( " $file ?ignored= $item_ignored &deleted= $item_deleted &approved= $item_approved &spam= $item_spam " );
2003-11-12 16:22:47 +01:00
exit ();
break ;
default :
2005-01-24 09:21:31 +01:00
require_once ( 'admin-header.php' );
2003-11-12 16:22:47 +01:00
2005-01-27 23:24:07 +01:00
if ( isset ( $_GET [ 'deleted' ]) || isset ( $_GET [ 'approved' ]) || isset ( $_GET [ 'ignored' ]) ) {
2005-09-13 02:52:22 +02:00
echo " <div id='moderated' class='updated fade'> \n <p> " ;
2005-02-06 21:49:26 +01:00
$approved = ( int ) $_GET [ 'approved' ];
2005-02-11 02:52:19 +01:00
$deleted = ( int ) $_GET [ 'deleted' ];
$ignored = ( int ) $_GET [ 'ignored' ];
$spam = ( int ) $_GET [ 'spam' ];
2004-04-15 10:28:53 +02:00
if ( $approved ) {
if ( '1' == $approved ) {
2005-12-12 23:48:30 +01:00
echo __ ( " 1 comment approved " ) . " <br/> \n " ;
2003-11-12 16:22:47 +01:00
} else {
2004-04-25 04:19:31 +02:00
echo sprintf ( __ ( " %s comments approved <br /> " ), $approved ) . " \n " ;
2003-11-12 16:22:47 +01:00
}
2004-04-15 10:28:53 +02:00
}
if ( $deleted ) {
if ( '1' == $deleted ) {
2005-12-12 23:48:30 +01:00
echo __ ( " 1 comment deleted " ) . " <br/> \n " ;
2003-11-12 16:22:47 +01:00
} else {
2005-12-12 23:48:30 +01:00
echo sprintf ( __ ( " %s comments deleted " ), $deleted ) . " <br/> \n " ;
2003-11-12 16:22:47 +01:00
}
2004-04-15 10:28:53 +02:00
}
2005-02-11 02:52:19 +01:00
if ( $spam ) {
if ( '1' == $spam ) {
2005-12-12 23:48:30 +01:00
echo __ ( " 1 comment marked as spam " ) . " <br/> \n " ;
2005-02-11 02:52:19 +01:00
} else {
2005-12-12 23:48:30 +01:00
echo sprintf ( __ ( " %s comments marked as spam " ), $spam ) . " <br/> \n " ;
2005-02-11 02:52:19 +01:00
}
}
2004-04-15 10:28:53 +02:00
if ( $ignored ) {
if ( '1' == $ignored ) {
2005-12-12 23:48:30 +01:00
echo __ ( " 1 comment unchanged " ) . " <br/> \n " ;
2003-11-12 16:22:47 +01:00
} else {
2005-12-12 23:48:30 +01:00
echo sprintf ( __ ( " %s comments unchanged " ), $ignored ) . " <br/> \n " ;
2003-11-12 16:22:47 +01:00
}
}
2004-04-15 10:28:53 +02:00
echo " </p></div> \n " ;
}
2003-11-12 16:22:47 +01:00
2004-04-15 10:28:53 +02:00
?>
2006-02-12 08:53:23 +01:00
2003-11-12 16:22:47 +01:00
< div class = " wrap " >
2004-11-18 20:51:31 +01:00
2003-11-30 23:13:53 +01:00
< ? php
2005-07-17 21:29:55 +02:00
if ( current_user_can ( 'moderate_comments' ) )
2004-11-18 20:51:31 +01:00
$comments = $wpdb -> get_results ( " SELECT * FROM $wpdb->comments WHERE comment_approved = '0' " );
else
$comments = '' ;
2003-11-23 02:15:24 +01:00
2003-11-12 16:22:47 +01:00
if ( $comments ) {
// list all comments that are waiting for approval
$file = basename ( __FILE__ );
2003-11-30 23:13:53 +01:00
?>
2004-10-05 09:13:51 +02:00
< h2 >< ? php _e ( 'Moderation Queue' ) ?> </h2>
2004-01-02 01:49:13 +01:00
< form name = " approval " action = " moderation.php " method = " post " >
2006-05-03 00:36:06 +02:00
< ? php wp_nonce_field ( 'moderate-comments' ) ?>
2003-11-30 23:13:53 +01:00
< input type = " hidden " name = " action " value = " update " />
2006-06-06 06:14:04 +02:00
< ol id = " the-comment-list " class = " commentlist " >
2003-11-30 23:13:53 +01:00
< ? php
2004-10-05 09:13:51 +02:00
$i = 0 ;
2003-11-12 16:22:47 +01:00
foreach ( $comments as $comment ) {
2004-10-05 09:13:51 +02:00
++ $i ;
2006-08-30 23:46:31 +02:00
$comment_date = mysql2date ( get_option ( " date_format " ) . " @ " . get_option ( " time_format " ), $comment -> comment_date );
2004-05-24 10:22:18 +02:00
$post_title = $wpdb -> get_var ( " SELECT post_title FROM $wpdb->posts WHERE ID=' $comment->comment_post_ID ' " );
2006-06-06 06:14:04 +02:00
if ( $i % 2 ) $class = 'js-unapproved alternate' ;
else $class = 'js-unapproved' ;
echo " \n \t <li id='comment- $comment->comment_ID ' class=' $class '> " ;
2003-11-30 23:13:53 +01:00
?>
2006-04-19 10:30:56 +02:00
< 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>
2003-11-30 23:13:53 +01:00
< ? php comment_text () ?>
2006-04-19 10:30:56 +02:00
< p >< ? php comment_date ( 'M j, g:i A' ); ?> — [ <?php
echo '<a href="comment.php?action=editcomment&comment=' . $comment -> comment_ID . '">' . __ ( 'Edit' ) . '</a> | ' ;
2006-06-06 06:14:04 +02:00
echo " <a href= \" post.php?action=deletecomment&p= " . $comment -> comment_post_ID . " &comment= " . $comment -> comment_ID . " \" onclick= \" return deleteSomething( 'comment', $comment->comment_ID , ' " . sprintf ( __ ( " You are about to delete this comment by "%s". \\ n"Cancel" to stop, "OK" to delete. " ), js_escape ( $comment -> comment_author )) . " ', theCommentList ); \" > " . __ ( 'Delete ' ) . " </a> | " ; ?>
2006-04-19 10:30:56 +02:00
< ? 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> ] —
< ? php _e ( 'Bulk action:' ) ?>
2006-07-07 20:35:49 +02:00
< 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>
< 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>
< 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>
< 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>
2004-12-11 09:24:04 +01:00
</ p >
2003-11-30 23:13:53 +01:00
</ li >
< ? php
2003-11-12 16:22:47 +01:00
}
2003-11-30 23:13:53 +01:00
?>
</ ol >
2004-12-20 21:03:30 +01:00
2005-08-31 04:39:17 +02:00
< div id = " ajax-response " ></ div >
2006-04-19 10:30:56 +02:00
< p class = " submit " >< input type = " submit " name = " submit " value = " <?php _e('Bulk Moderate Comments »') ?> " /></ p >
2004-12-20 21:03:30 +01:00
< script type = " text/javascript " >
2004-12-20 21:22:26 +01:00
// <![CDATA[
2004-12-20 21:03:30 +01:00
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 ;
}
}
}
function markAllForDefer () {
for ( var i = 0 ; i < document . approval . length ; i ++ ) {
if ( document . approval [ i ] . value == " later " ) {
document . approval [ i ] . checked = true ;
}
}
}
2005-02-11 02:52:19 +01:00
function markAllAsSpam () {
for ( var i = 0 ; i < document . approval . length ; i ++ ) {
if ( document . approval [ i ] . value == " spam " ) {
document . approval [ i ] . checked = true ;
}
}
}
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>' );
2004-12-20 21:22:26 +01:00
// ]]>
2004-12-20 21:03:30 +01:00
</ script >
< noscript >
2004-09-08 10:30:18 +02:00
< p >
< input name = " feelinglucky " type = " checkbox " id = " feelinglucky " value = " true " /> < label for = " feelinglucky " >< ? php _e ( 'Delete every comment marked "defer." <strong>Warning: This can’t be undone.</strong>' ); ?> </label>
</ p >
2004-12-20 21:03:30 +01:00
</ noscript >
2003-11-30 23:13:53 +01:00
</ form >
< ? php
2003-11-12 16:22:47 +01:00
} else {
// nothing to approve
2005-12-12 23:48:30 +01:00
echo '<p>' . __ ( " Currently there are no comments for you to moderate. " ) . " </p> \n " ;
2003-11-12 16:22:47 +01:00
}
2003-11-30 23:13:53 +01:00
?>
2003-11-12 16:22:47 +01:00
</ div >
< ? php
break ;
}
2004-08-23 01:24:50 +02:00
2006-04-19 10:30:56 +02:00
include ( 'admin-footer.php' );
2006-05-22 19:16:05 +02:00
?>