scripts.mit.edu
/
autoinstalls
/
wordpress.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
WordPress 3.8
[autoinstalls/wordpress.git]
/
wp-admin
/
includes
/
class-wp-comments-list-table.php
diff --git
a/wp-admin/includes/class-wp-comments-list-table.php
b/wp-admin/includes/class-wp-comments-list-table.php
index 345bda2f5b2e84c840fe8821988c4e4ddc57723a..711d742efc8783014a390cf499417b0569f1b039 100644
(file)
--- a/
wp-admin/includes/class-wp-comments-list-table.php
+++ b/
wp-admin/includes/class-wp-comments-list-table.php
@@
-127,6
+127,14
@@
class WP_Comments_List_Table extends WP_List_Table {
function get_per_page( $comment_status = 'all' ) {
$comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' );
function get_per_page( $comment_status = 'all' ) {
$comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' );
+ /**
+ * Filter the number of comments listed per page in the comments list table.
+ *
+ * @since 2.6.0
+ *
+ * @param int $comments_per_page The number of comments to list per page.
+ * @param string $comment_status The comment status name. Default 'All'.
+ */
$comments_per_page = apply_filters( 'comments_per_page', $comments_per_page, $comment_status );
return $comments_per_page;
}
$comments_per_page = apply_filters( 'comments_per_page', $comments_per_page, $comment_status );
return $comments_per_page;
}
@@
-181,6
+189,14
@@
class WP_Comments_List_Table extends WP_List_Table {
) . '</a>';
}
) . '</a>';
}
+ /**
+ * Filter the comment status links.
+ *
+ * @since 2.5.0
+ *
+ * @param array $status_links An array of fully-formed status links. Default 'All'.
+ * Accepts 'All', 'Pending', 'Approved', 'Spam', and 'Trash'.
+ */
$status_links = apply_filters( 'comment_status_links', $status_links );
return $status_links;
}
$status_links = apply_filters( 'comment_status_links', $status_links );
return $status_links;
}
@@
-219,6
+235,13
@@
class WP_Comments_List_Table extends WP_List_Table {
<select name="comment_type">
<option value=""><?php _e( 'Show all comment types' ); ?></option>
<?php
<select name="comment_type">
<option value=""><?php _e( 'Show all comment types' ); ?></option>
<?php
+ /**
+ * Filter the comment types dropdown menu.
+ *
+ * @since 2.7.0
+ *
+ * @param array $comment_types An array of comment types. Accepts 'Comments', 'Pings'.
+ */
$comment_types = apply_filters( 'admin_comment_types_dropdown', array(
'comment' => __( 'Comments' ),
'pings' => __( 'Pings' ),
$comment_types = apply_filters( 'admin_comment_types_dropdown', array(
'comment' => __( 'Comments' ),
'pings' => __( 'Pings' ),
@@
-229,6
+252,11
@@
class WP_Comments_List_Table extends WP_List_Table {
?>
</select>
<?php
?>
</select>
<?php
+ /**
+ * Fires just before the Filter submit button for comment types.
+ *
+ * @since 3.5.0
+ */
do_action( 'restrict_manage_comments' );
submit_button( __( 'Filter' ), 'button', false, false, array( 'id' => 'post-query-submit' ) );
}
do_action( 'restrict_manage_comments' );
submit_button( __( 'Filter' ), 'button', false, false, array( 'id' => 'post-query-submit' ) );
}
@@
-238,6
+266,13
@@
class WP_Comments_List_Table extends WP_List_Table {
$title = ( 'spam' == $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' );
submit_button( $title, 'apply', 'delete_all', false );
}
$title = ( 'spam' == $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' );
submit_button( $title, 'apply', 'delete_all', false );
}
+ /**
+ * Fires after the Filter submit button for comment types.
+ *
+ * @since 2.5.0
+ *
+ * @param string $comment_status The comment status name. Default 'All'.
+ */
do_action( 'manage_comments_nav', $comment_status );
echo '</div>';
}
do_action( 'manage_comments_nav', $comment_status );
echo '</div>';
}
@@
-311,7
+346,8
@@
class WP_Comments_List_Table extends WP_List_Table {
global $post, $comment;
$comment = $a_comment;
global $post, $comment;
$comment = $a_comment;
- $the_comment_class = join( ' ', get_comment_class( wp_get_comment_status( $comment->comment_ID ) ) );
+ $the_comment_class = wp_get_comment_status( $comment->comment_ID );
+ $the_comment_class = join( ' ', get_comment_class( $the_comment_class, $comment->comment_ID, $comment->comment_post_ID ) );
$post = get_post( $comment->comment_post_ID );
$post = get_post( $comment->comment_post_ID );
@@
-373,7
+409,10
@@
class WP_Comments_List_Table extends WP_List_Table {
comment_text();
if ( $user_can ) { ?>
<div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
comment_text();
if ( $user_can ) { ?>
<div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
- <textarea class="comment" rows="1" cols="1"><?php echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) ); ?></textarea>
+ <textarea class="comment" rows="1" cols="1"><?php
+ /** This filter is documented in wp-admin/includes/comment.php */
+ echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) );
+ ?></textarea>
<div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
<div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
<div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div>
<div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
<div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
<div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div>
@@
-423,6
+462,7
@@
class WP_Comments_List_Table extends WP_List_Table {
$actions['reply'] = '<a onclick="commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
}
$actions['reply'] = '<a onclick="commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
}
+ /** This filter is documented in wp-admin/includes/dashboard.php */
$actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
$i = 0;
$actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
$i = 0;
@@
-510,6
+550,14
@@
class WP_Comments_List_Table extends WP_List_Table {
}
function column_default( $comment, $column_name ) {
}
function column_default( $comment, $column_name ) {
+ /**
+ * Fires when the default column output is displayed for a single row.
+ *
+ * @since 2.8.0
+ *
+ * @param string $column_name The custom column's name.
+ * @param int $comment->comment_ID The custom column's unique ID number.
+ */
do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
}
}
do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
}
}