[ XREF Home ] [ Index ]

PHP Cross Reference of WordPress Trunk

Provided by Yoast

title

Body

[close]

/wp-admin/ -> edit-comments.php (source)

   1  <?php
   2  /**
   3   * Edit Comments Administration Screen.
   4   *
   5   * @package WordPress
   6   * @subpackage Administration
   7   */
   8  
   9  /** WordPress Administration Bootstrap */
  10  require_once ('./admin.php');
  11  if ( !current_user_can('edit_posts') )
  12      wp_die(__('Cheatin&#8217; uh?'));
  13  
  14  $wp_list_table = _get_list_table('WP_Comments_List_Table');
  15  $pagenum = $wp_list_table->get_pagenum();
  16  
  17  $doaction = $wp_list_table->current_action();
  18  
  19  if ( $doaction ) {
  20      check_admin_referer( 'bulk-comments' );
  21  
  22      if ( 'delete_all' == $doaction && !empty( $_REQUEST['pagegen_timestamp'] ) ) {
  23          $comment_status = $wpdb->escape( $_REQUEST['comment_status'] );
  24          $delete_time = $wpdb->escape( $_REQUEST['pagegen_timestamp'] );
  25          $comment_ids = $wpdb->get_col( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = '$comment_status' AND '$delete_time' > comment_date_gmt" );
  26          $doaction = 'delete';
  27      } elseif ( isset( $_REQUEST['delete_comments'] ) ) {
  28          $comment_ids = $_REQUEST['delete_comments'];
  29          $doaction = ( $_REQUEST['action'] != -1 ) ? $_REQUEST['action'] : $_REQUEST['action2'];
  30      } elseif ( isset( $_REQUEST['ids'] ) ) {
  31          $comment_ids = array_map( 'absint', explode( ',', $_REQUEST['ids'] ) );
  32      } elseif ( wp_get_referer() ) {
  33          wp_redirect( wp_get_referer() );
  34          exit;
  35      }
  36  
  37      $approved = $unapproved = $spammed = $unspammed = $trashed = $untrashed = $deleted = 0;
  38  
  39      $redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids' ), wp_get_referer() );
  40      $redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to );
  41  
  42      foreach ( $comment_ids as $comment_id ) { // Check the permissions on each
  43          if ( !current_user_can( 'edit_comment', $comment_id ) )
  44              continue;
  45  
  46          switch ( $doaction ) {
  47              case 'approve' :
  48                  wp_set_comment_status( $comment_id, 'approve' );
  49                  $approved++;
  50                  break;
  51              case 'unapprove' :
  52                  wp_set_comment_status( $comment_id, 'hold' );
  53                  $unapproved++;
  54                  break;
  55              case 'spam' :
  56                  wp_spam_comment( $comment_id );
  57                  $spammed++;
  58                  break;
  59              case 'unspam' :
  60                  wp_unspam_comment( $comment_id );
  61                  $unspammed++;
  62                  break;
  63              case 'trash' :
  64                  wp_trash_comment( $comment_id );
  65                  $trashed++;
  66                  break;
  67              case 'untrash' :
  68                  wp_untrash_comment( $comment_id );
  69                  $untrashed++;
  70                  break;
  71              case 'delete' :
  72                  wp_delete_comment( $comment_id );
  73                  $deleted++;
  74                  break;
  75          }
  76      }
  77  
  78      if ( $approved )
  79          $redirect_to = add_query_arg( 'approved', $approved, $redirect_to );
  80      if ( $unapproved )
  81          $redirect_to = add_query_arg( 'unapproved', $unapproved, $redirect_to );
  82      if ( $spammed )
  83          $redirect_to = add_query_arg( 'spammed', $spammed, $redirect_to );
  84      if ( $unspammed )
  85          $redirect_to = add_query_arg( 'unspammed', $unspammed, $redirect_to );
  86      if ( $trashed )
  87          $redirect_to = add_query_arg( 'trashed', $trashed, $redirect_to );
  88      if ( $untrashed )
  89          $redirect_to = add_query_arg( 'untrashed', $untrashed, $redirect_to );
  90      if ( $deleted )
  91          $redirect_to = add_query_arg( 'deleted', $deleted, $redirect_to );
  92      if ( $trashed || $spammed )
  93          $redirect_to = add_query_arg( 'ids', join( ',', $comment_ids ), $redirect_to );
  94  
  95      wp_redirect( $redirect_to );
  96      exit;
  97  } elseif ( ! empty( $_GET['_wp_http_referer'] ) ) {
  98       wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), stripslashes( $_SERVER['REQUEST_URI'] ) ) );
  99       exit;
 100  }
 101  
 102  $wp_list_table->prepare_items();
 103  
 104  wp_enqueue_script('admin-comments');
 105  enqueue_comment_hotkeys_js();
 106  
 107  if ( $post_id )
 108      $title = sprintf(__('Comments on &#8220;%s&#8221;'), wp_html_excerpt(_draft_or_post_title($post_id), 50));
 109  else
 110      $title = __('Comments');
 111  
 112  add_screen_option( 'per_page', array('label' => _x( 'Comments', 'comments per page (screen options)' )) );
 113  
 114  add_contextual_help( $current_screen, '<p>' . __( 'You can manage comments made on your site similar to the way you manage Posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions.' ) . '</p>' .
 115      '<p>' . __( 'A yellow row means the comment is waiting for you to moderate it.' ) . '</p>' .
 116      '<p>' . __( 'In the Author column, in addition to the author&#8217;s name, email address, and blog URL, the commenter&#8217;s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' .
 117      '<p>' . __( 'In the Comment column, above each comment it says &#8220;Submitted on,&#8221; followed by the date and time the comment was left on your site. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' .
 118      '<p>' . __( 'In the In Response To column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The &#8220;#&#8221; permalink symbol below leads to that post on your live site. The small bubble with the number in it shows how many comments that post has received. If the bubble is gray, you have moderated all comments for that post. If it is blue, there are pending comments. Clicking the bubble will filter the comments screen to show only comments on that post.' ) . '</p>' .
 119      '<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link below to learn more.' ) . '</p>' .
 120      '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
 121      '<p>' . __( '<a href="http://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .
 122      '<p>' . __( '<a href="http://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' .
 123      '<p>' . __( '<a href="http://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .
 124      '<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
 125  );
 126  require_once ('./admin-header.php');
 127  ?>
 128  
 129  <div class="wrap">
 130  <?php screen_icon(); ?>
 131  <h2><?php
 132  if ( $post_id )
 133      echo sprintf(__('Comments on &#8220;%s&#8221;'),
 134          sprintf('<a href="%s">%s</a>',
 135              get_edit_post_link($post_id),
 136              wp_html_excerpt(_draft_or_post_title($post_id), 50)
 137          )
 138      );
 139  else
 140      echo __('Comments');
 141  
 142  if ( isset($_REQUEST['s']) && $_REQUEST['s'] )
 143      printf( '<span class="subtitle">' . sprintf( __( 'Search results for &#8220;%s&#8221;' ), wp_html_excerpt( esc_html( stripslashes( $_REQUEST['s'] ) ), 50 ) ) . '</span>' ); ?>
 144  </h2>
 145  
 146  <?php
 147  if ( isset( $_REQUEST['error'] ) ) {
 148      $error = (int) $_REQUEST['error'];
 149      $error_msg = '';
 150      switch ( $error ) {
 151          case 1 :
 152              $error_msg = __( 'Oops, no comment with this ID.' );
 153              break;
 154          case 2 :
 155              $error_msg = __( 'You are not allowed to edit comments on this post.' );
 156              break;
 157      }
 158      if ( $error_msg )
 159          echo '<div id="moderated" class="error"><p>' . $error_msg . '</p></div>';
 160  }
 161  
 162  if ( isset($_REQUEST['approved']) || isset($_REQUEST['deleted']) || isset($_REQUEST['trashed']) || isset($_REQUEST['untrashed']) || isset($_REQUEST['spammed']) || isset($_REQUEST['unspammed']) || isset($_REQUEST['same']) ) {
 163      $approved  = isset( $_REQUEST['approved']  ) ? (int) $_REQUEST['approved']  : 0;
 164      $deleted   = isset( $_REQUEST['deleted']   ) ? (int) $_REQUEST['deleted']   : 0;
 165      $trashed   = isset( $_REQUEST['trashed']   ) ? (int) $_REQUEST['trashed']   : 0;
 166      $untrashed = isset( $_REQUEST['untrashed'] ) ? (int) $_REQUEST['untrashed'] : 0;
 167      $spammed   = isset( $_REQUEST['spammed']   ) ? (int) $_REQUEST['spammed']   : 0;
 168      $unspammed = isset( $_REQUEST['unspammed'] ) ? (int) $_REQUEST['unspammed'] : 0;
 169      $same      = isset( $_REQUEST['same'] )      ? (int) $_REQUEST['same']      : 0;
 170  
 171      if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) {
 172          if ( $approved > 0 )
 173              $messages[] = sprintf( _n( '%s comment approved', '%s comments approved', $approved ), $approved );
 174  
 175          if ( $spammed > 0 ) {
 176              $ids = isset($_REQUEST['ids']) ? $_REQUEST['ids'] : 0;
 177              $messages[] = sprintf( _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", "bulk-comments" ) ) . '">' . __('Undo') . '</a><br />';
 178          }
 179  
 180          if ( $unspammed > 0 )
 181              $messages[] = sprintf( _n( '%s comment restored from the spam', '%s comments restored from the spam', $unspammed ), $unspammed );
 182  
 183          if ( $trashed > 0 ) {
 184              $ids = isset($_REQUEST['ids']) ? $_REQUEST['ids'] : 0;
 185              $messages[] = sprintf( _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", "bulk-comments" ) ) . '">' . __('Undo') . '</a><br />';
 186          }
 187  
 188          if ( $untrashed > 0 )
 189              $messages[] = sprintf( _n( '%s comment restored from the Trash', '%s comments restored from the Trash', $untrashed ), $untrashed );
 190  
 191          if ( $deleted > 0 )
 192              $messages[] = sprintf( _n( '%s comment permanently deleted', '%s comments permanently deleted', $deleted ), $deleted );
 193  
 194          if ( $same > 0 && $comment = get_comment( $same ) ) {
 195              switch ( $comment->comment_approved ) {
 196                  case '1' :
 197                      $messages[] = __('This comment is already approved.') . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
 198                      break;
 199                  case 'trash' :
 200                      $messages[] = __( 'This comment is already in the Trash.' ) . ' <a href="' . esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ) . '"> ' . __( 'View Trash' ) . '</a>';
 201                      break;
 202                  case 'spam' :
 203                      $messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
 204                      break;
 205              }
 206          }
 207  
 208          echo '<div id="moderated" class="updated"><p>' . implode( "<br/>\n", $messages ) . '</p></div>';
 209      }
 210  }
 211  ?>
 212  
 213  <?php $wp_list_table->views(); ?>
 214  
 215  <form id="comments-form" action="" method="get">
 216  
 217  <?php $wp_list_table->search_box( __( 'Search Comments' ), 'comment' ); ?>
 218  
 219  <?php if ( $post_id ) : ?>
 220  <input type="hidden" name="p" value="<?php echo esc_attr( intval( $post_id ) ); ?>" />
 221  <?php endif; ?>
 222  <input type="hidden" name="comment_status" value="<?php echo esc_attr($comment_status); ?>" />
 223  <input type="hidden" name="pagegen_timestamp" value="<?php echo esc_attr(current_time('mysql', 1)); ?>" />
 224  
 225  <input type="hidden" name="_total" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('total_items') ); ?>" />
 226  <input type="hidden" name="_per_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('per_page') ); ?>" />
 227  <input type="hidden" name="_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg('page') ); ?>" />
 228  
 229  <?php if ( isset($_REQUEST['paged']) ) { ?>
 230      <input type="hidden" name="paged" value="<?php echo esc_attr( absint( $_REQUEST['paged'] ) ); ?>" />
 231  <?php } ?>
 232  
 233  <?php $wp_list_table->display(); ?>
 234  </form>
 235  </div>
 236  
 237  <div id="ajax-response"></div>
 238  
 239  <?php
 240  wp_comment_reply('-1', true, 'detail');
 241  wp_comment_trashnotice();
 242  include ('./admin-footer.php'); ?>


Generated: Wed Jun 1 08:30:02 2011 Cross-referenced by PHPXref 0.7
Provided by Yoast and awesome WordPress Hosting