2003-11-12 15:22:47 +00:00
<? php
2004-10-19 03:03:06 +00:00
require_once ( 'admin.php' );
2004-04-25 02:19:31 +00:00
$title = __ ( 'Moderate comments' );
2003-12-08 03:46:42 +00:00
$parent_file = 'edit.php' ;
2003-11-12 15:22:47 +00:00
2005-02-11 01:52:19 +00:00
$wpvarstoreset = array ( 'action' , 'item_ignored' , 'item_deleted' , 'item_approved' , 'item_spam' , 'feelinglucky' );
2003-12-18 09:36:13 +00:00
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
2004-04-20 22:56:47 +00:00
if ( empty ( $_POST [ " $wpvar " ])) {
if ( empty ( $_GET [ " $wpvar " ])) {
2003-12-18 09:36:13 +00:00
$$wpvar = '' ;
2003-11-12 15:22:47 +00:00
} else {
2004-04-20 22:56:47 +00:00
$$wpvar = $_GET [ " $wpvar " ];
2003-11-12 15:22:47 +00:00
}
} else {
2004-04-20 22:56:47 +00:00
$$wpvar = $_POST [ " $wpvar " ];
2003-11-12 15:22:47 +00:00
}
}
}
2004-01-02 00:49:13 +00:00
$comment = array ();
2004-04-20 22:56:47 +00:00
if ( isset ( $_POST [ "comment" ])) {
foreach ( $_POST [ "comment" ] as $k => $v ) {
2004-01-02 00:49:13 +00:00
$comment [ intval ( $k )] = $v ;
}
}
2003-11-12 15:22:47 +00:00
switch ( $action ) {
case 'update' :
2005-07-17 19:29:55 +00:00
if ( ! current_user_can ( 'moderate_comments' ) )
2004-04-25 02:19:31 +00:00
die ( __ ( '<p>Your level is not high enough to moderate comments.</p>' ));
2003-11-12 15:22:47 +00:00
$item_ignored = 0 ;
$item_deleted = 0 ;
$item_approved = 0 ;
2005-02-11 01:52:19 +00:00
$item_spam = 0 ;
2003-11-12 15:22:47 +00:00
foreach ( $comment as $key => $value ) {
2004-09-08 08:30:18 +00:00
if ( $feelinglucky && 'later' == $value )
$value = 'delete' ;
2003-11-12 15:22:47 +00:00
switch ( $value ) {
2003-11-15 08:58:18 +00: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 01:52:19 +00:00
case 'spam' :
wp_set_comment_status ( $key , 'spam' );
++ $item_spam ;
break ;
2003-11-15 08:58:18 +00:00
case 'approve' :
wp_set_comment_status ( $key , 'approve' );
2005-02-11 01:52:19 +00:00
if ( get_settings ( 'comments_notify' ) == true ) {
2003-11-15 08:58:18 +00:00
wp_notify_postauthor ( $key );
}
++ $item_approved ;
break ;
2003-11-12 15:22:47 +00:00
}
}
$file = basename ( __FILE__ );
2005-02-11 01:52:19 +00:00
header ( "Location: $file ?ignored= $item_ignored &deleted= $item_deleted &approved= $item_approved &spam= $item_spam " );
2003-11-12 15:22:47 +00:00
exit ();
break ;
default :
2005-01-24 08:21:31 +00:00
require_once ( 'admin-header.php' );
2003-11-12 15:22:47 +00:00
2005-01-27 22:24:07 +00:00
if ( isset ( $_GET [ 'deleted' ]) || isset ( $_GET [ 'approved' ]) || isset ( $_GET [ 'ignored' ]) ) {
2005-09-13 00:52:22 +00:00
echo "<div id='moderated' class='updated fade'> \n <p>" ;
2005-02-06 20:49:26 +00:00
$approved = ( int ) $_GET [ 'approved' ];
2005-02-11 01:52:19 +00:00
$deleted = ( int ) $_GET [ 'deleted' ];
$ignored = ( int ) $_GET [ 'ignored' ];
$spam = ( int ) $_GET [ 'spam' ];
2004-04-15 08:28:53 +00:00
if ( $approved ) {
if ( '1' == $approved ) {
2004-04-25 02:19:31 +00:00
echo __ ( "1 comment approved <br />" ) . " \n " ;
2003-11-12 15:22:47 +00:00
} else {
2004-04-25 02:19:31 +00:00
echo sprintf ( __ ( "%s comments approved <br />" ), $approved ) . " \n " ;
2003-11-12 15:22:47 +00:00
}
2004-04-15 08:28:53 +00:00
}
if ( $deleted ) {
if ( '1' == $deleted ) {
2004-04-25 02:19:31 +00:00
echo __ ( "1 comment deleted <br />" ) . " \n " ;
2003-11-12 15:22:47 +00:00
} else {
2004-04-25 02:19:31 +00:00
echo sprintf ( __ ( "%s comments deleted <br />" ), $deleted ) . " \n " ;
2003-11-12 15:22:47 +00:00
}
2004-04-15 08:28:53 +00:00
}
2005-02-11 01:52:19 +00:00
if ( $spam ) {
if ( '1' == $spam ) {
echo __ ( "1 comment marked as spam <br />" ) . " \n " ;
} else {
echo sprintf ( __ ( "%s comments marked as spam <br />" ), $spam ) . " \n " ;
}
}
2004-04-15 08:28:53 +00:00
if ( $ignored ) {
if ( '1' == $ignored ) {
2004-04-25 02:19:31 +00:00
echo __ ( "1 comment unchanged <br />" ) . " \n " ;
2003-11-12 15:22:47 +00:00
} else {
2004-04-25 02:19:31 +00:00
echo sprintf ( __ ( "%s comments unchanged <br />" ), $ignored ) . " \n " ;
2003-11-12 15:22:47 +00:00
}
}
2004-04-15 08:28:53 +00:00
echo "</p></div> \n " ;
}
2003-11-12 15:22:47 +00:00
2004-04-15 08:28:53 +00:00
?>
2003-11-12 15:22:47 +00:00
<div class="wrap">
2004-11-18 19:51:31 +00:00
2003-11-30 22:13:53 +00:00
<?php
2005-07-17 19:29:55 +00:00
if ( current_user_can('moderate_comments') )
2004-11-18 19:51:31 +00:00
$comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '0'");
else
$comments = '';
2003-11-23 01:15:24 +00:00
2003-11-12 15:22:47 +00:00
if ($comments) {
// list all comments that are waiting for approval
$file = basename(__FILE__);
2003-11-30 22:13:53 +00:00
?>
2004-10-05 07:13:51 +00:00
<h2><?php _e('Moderation Queue') ?></h2>
2004-01-02 00:49:13 +00:00
<form name="approval" action="moderation.php" method="post">
2003-11-30 22:13:53 +00:00
<input type="hidden" name="action" value="update" />
2005-08-31 02:39:17 +00:00
<ol id="the-list" class="commentlist">
2003-11-30 22:13:53 +00:00
<?php
2004-10-05 07:13:51 +00:00
$i = 0;
2003-11-12 15:22:47 +00:00
foreach($comments as $comment) {
2004-10-05 07:13:51 +00:00
++$i;
2003-11-12 15:22:47 +00:00
$comment_date = mysql2date(get_settings("date_format") . " @ " . get_settings("time_format"), $comment->comment_date);
2004-05-24 08:22:18 +00:00
$post_title = $wpdb->get_var("SELECT post_title FROM $wpdb->posts WHERE ID='$comment->comment_post_ID'");
2004-10-05 07:13:51 +00:00
if ($i % 2) $class = 'class="alternate"';
else $class = '';
echo "\n\t<li id='comment-$comment->comment_ID' $class>";
2003-11-30 22:13:53 +00:00
?>
2004-12-15 23:20:51 +00:00
<p><strong><?php _e('Name:') ?></strong> <?php comment_author_link() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('E-mail:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_email) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
2003-11-30 22:13:53 +00:00
<?php comment_text() ?>
<p><?php
2004-09-08 08:30:18 +00:00
echo '<a href="post.php?action=editcomment&comment='.$comment->comment_ID.'">' . __('Edit') . '</a> | ';?>
<a href="<?php echo get_permalink($comment->comment_post_ID); ?>"><?php _e('View Post') ?></a> |
<?php
2005-08-31 02:39:17 +00: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."), wp_specialchars($comment->comment_author, 1)) . "' );\">" . __('Delete just this comment') . "</a> | "; ?> <?php _e('Bulk action:') ?>
2004-04-25 02:19:31 +00: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>
2005-02-11 01:52:19 +00:00
<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>
2004-04-25 02:19:31 +00:00
<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>
2004-09-08 08:30:18 +00:00
<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 08:24:04 +00:00
</p>
2003-11-30 22:13:53 +00:00
</li>
<?php
2003-11-12 15:22:47 +00:00
}
2003-11-30 22:13:53 +00:00
?>
</ol>
2004-12-20 20:03:30 +00:00
2005-08-31 02:39:17 +00:00
<div id="ajax-response"></div>
2004-12-20 20:03:30 +00:00
<p class="submit"><input type="submit" name="submit" value="<?php _e('Moderate Comments »') ?>" /></p>
<script type="text/javascript">
2004-12-20 20:22:26 +00:00
// <![CDATA[
2004-12-20 20:03:30 +00: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 01:52:19 +00: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 20:22:26 +00:00
// ]]>
2004-12-20 20:03:30 +00:00
</script>
<noscript>
2004-09-08 08:30:18 +00: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 20:03:30 +00:00
</noscript>
2003-11-30 22:13:53 +00:00
</form>
<?php
2003-11-12 15:22:47 +00:00
} else {
// nothing to approve
2004-11-18 19:51:31 +00:00
echo __("<p>Currently there are no comments for you to moderate.</p>") . "\n";
2003-11-12 15:22:47 +00:00
}
2003-11-30 22:13:53 +00:00
?>
2003-11-12 15:22:47 +00:00
</div>
<?php
break;
}
2004-08-22 23:24:50 +00:00
2005-08-31 02:39:17 +00:00
include('admin-footer.php') ?>