Much better In Response To column, with pretty comment bubble
git-svn-id: http://svn.automattic.com/wordpress/trunk@10102 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
57b4d9966c
commit
8a527f4d95
|
@ -190,6 +190,16 @@ $start = $offset = ( $page - 1 ) * $comments_per_page;
|
||||||
|
|
||||||
list($_comments, $total) = _wp_get_comment_list( $comment_status, $search_dirty, $start, $comments_per_page + 5, $post_id, $comment_type ); // Grab a few extra
|
list($_comments, $total) = _wp_get_comment_list( $comment_status, $search_dirty, $start, $comments_per_page + 5, $post_id, $comment_type ); // Grab a few extra
|
||||||
|
|
||||||
|
$_comment_post_ids = array();
|
||||||
|
foreach ( $_comments as $_c ) {
|
||||||
|
$_comment_post_ids[] = $_c->comment_post_ID;
|
||||||
|
}
|
||||||
|
$_comment_pending_count_temp = (array) get_pending_comments_num($_comment_post_ids);
|
||||||
|
foreach ( (array) $_comment_post_ids as $_cpid )
|
||||||
|
$_comment_pending_count[$_cpid] = isset( $_comment_pending_count_temp[$_cpid] ) ? $_comment_pending_count_temp[$_cpid] : 0;
|
||||||
|
if ( empty($_comment_pending_count) )
|
||||||
|
$_comment_pending_count = array();
|
||||||
|
|
||||||
$comments = array_slice($_comments, 0, $comments_per_page);
|
$comments = array_slice($_comments, 0, $comments_per_page);
|
||||||
$extra_comments = array_slice($_comments, $comments_per_page);
|
$extra_comments = array_slice($_comments, $comments_per_page);
|
||||||
|
|
||||||
|
|
|
@ -1944,18 +1944,11 @@ function _wp_get_comment_list( $status = '', $s = false, $start, $num, $post = 0
|
||||||
* @param unknown_type $checkbox
|
* @param unknown_type $checkbox
|
||||||
*/
|
*/
|
||||||
function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true, $from_ajax = false ) {
|
function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true, $from_ajax = false ) {
|
||||||
global $comment, $post;
|
global $comment, $post, $_comment_pending_count;
|
||||||
$comment = get_comment( $comment_id );
|
$comment = get_comment( $comment_id );
|
||||||
$post = get_post($comment->comment_post_ID);
|
$post = get_post($comment->comment_post_ID);
|
||||||
$the_comment_status = wp_get_comment_status($comment->comment_ID);
|
$the_comment_status = wp_get_comment_status($comment->comment_ID);
|
||||||
|
|
||||||
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
|
||||||
$post_link = "<a href='" . get_edit_post_link($post->ID) . "'>";
|
|
||||||
$post_link .= get_the_title($comment->comment_post_ID) . '</a>';
|
|
||||||
} else {
|
|
||||||
$post_link = get_the_title($comment->comment_post_ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
$author_url = get_comment_author_url();
|
$author_url = get_comment_author_url();
|
||||||
if ( 'http://' == $author_url )
|
if ( 'http://' == $author_url )
|
||||||
$author_url = '';
|
$author_url = '';
|
||||||
|
@ -1971,10 +1964,10 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true,
|
||||||
else
|
else
|
||||||
$ptime = mysql2date(__('Y/m/d \a\t g:i A'), $comment->comment_date );
|
$ptime = mysql2date(__('Y/m/d \a\t g:i A'), $comment->comment_date );
|
||||||
|
|
||||||
$delete_url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) );
|
$delete_url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&p=$post->ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) );
|
||||||
$approve_url = clean_url( wp_nonce_url( "comment.php?action=approvecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "approve-comment_$comment->comment_ID" ) );
|
$approve_url = clean_url( wp_nonce_url( "comment.php?action=approvecomment&p=$post->ID&c=$comment->comment_ID", "approve-comment_$comment->comment_ID" ) );
|
||||||
$unapprove_url = clean_url( wp_nonce_url( "comment.php?action=unapprovecomment&p=$comment->comment_post_ID&c=$comment->comment_ID", "unapprove-comment_$comment->comment_ID" ) );
|
$unapprove_url = clean_url( wp_nonce_url( "comment.php?action=unapprovecomment&p=$post->ID&c=$comment->comment_ID", "unapprove-comment_$comment->comment_ID" ) );
|
||||||
$spam_url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&dt=spam&p=$comment->comment_post_ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) );
|
$spam_url = clean_url( wp_nonce_url( "comment.php?action=deletecomment&dt=spam&p=$post->ID&c=$comment->comment_ID", "delete-comment_$comment->comment_ID" ) );
|
||||||
|
|
||||||
echo "<tr id='comment-$comment->comment_ID' class='$the_comment_status'>";
|
echo "<tr id='comment-$comment->comment_ID' class='$the_comment_status'>";
|
||||||
$columns = get_column_headers('edit-comments');
|
$columns = get_column_headers('edit-comments');
|
||||||
|
@ -1992,7 +1985,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true,
|
||||||
case 'cb':
|
case 'cb':
|
||||||
if ( !$checkbox ) break;
|
if ( !$checkbox ) break;
|
||||||
echo '<th scope="row" class="check-column">';
|
echo '<th scope="row" class="check-column">';
|
||||||
if ( current_user_can('edit_post', $comment->comment_post_ID) ) echo "<input type='checkbox' name='delete_comments[]' value='$comment->comment_ID' />";
|
if ( current_user_can('edit_post', $post->ID) ) echo "<input type='checkbox' name='delete_comments[]' value='$comment->comment_ID' />";
|
||||||
echo '</th>';
|
echo '</th>';
|
||||||
break;
|
break;
|
||||||
case 'comment':
|
case 'comment':
|
||||||
|
@ -2011,7 +2004,7 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true,
|
||||||
<?php
|
<?php
|
||||||
$actions = array();
|
$actions = array();
|
||||||
|
|
||||||
if ( current_user_can('edit_post', $comment->comment_post_ID) ) {
|
if ( current_user_can('edit_post', $post->ID) ) {
|
||||||
$actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . __( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
|
$actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . __( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
|
||||||
$actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
|
$actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
|
||||||
if ( $comment_status ) { // not looking at all comments
|
if ( $comment_status ) { // not looking at all comments
|
||||||
|
@ -2072,12 +2065,30 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true,
|
||||||
break;
|
break;
|
||||||
case 'response':
|
case 'response':
|
||||||
if ( 'single' !== $mode ) {
|
if ( 'single' !== $mode ) {
|
||||||
|
if ( isset( $_comment_pending_count[$post->ID] ) ) {
|
||||||
|
$pending_comments = absint( $_comment_pending_count[$post->ID] );
|
||||||
|
} else {
|
||||||
|
$_comment_pending_count_temp = (array) get_pending_comments_num( array( $post->ID ) );
|
||||||
|
$pending_comments = $_comment_pending_count[$post->ID] = $_comment_pending_count_temp[$post->ID];
|
||||||
|
}
|
||||||
|
if ( current_user_can( 'edit_post', $post->ID ) ) {
|
||||||
|
$post_link = "<a href='" . get_edit_post_link($post->ID) . "'>";
|
||||||
|
$post_link .= get_the_title($post->ID) . '</a>';
|
||||||
|
} else {
|
||||||
|
$post_link = get_the_title($post->ID);
|
||||||
|
}
|
||||||
echo "<td $attributes>\n";
|
echo "<td $attributes>\n";
|
||||||
echo ""$post_link" ";
|
echo "“$post_link”<br />";
|
||||||
echo '<a href="edit-comments.php?p=' . $post->ID;
|
|
||||||
if ( !empty($_GET['comment_type']) ) echo '&comment_type=' . htmlspecialchars( $_GET['comment_type'] );
|
echo '<span class="post-com-count-wrapper">';
|
||||||
echo '">' . sprintf ( __ngettext('(%s)', '(%s)', $post->comment_count), number_format_i18n($post->comment_count) ) . '</a> <a href="' . get_permalink($post->ID) . '">#</a><br />';
|
$pending_phrase = sprintf( __('%s pending'), number_format( $pending_comments ) );
|
||||||
echo get_the_time(__('Y/m/d \a\t g:ia'));
|
if ( $pending_comments )
|
||||||
|
echo '<strong>';
|
||||||
|
comments_number("<a href='edit-comments.php?p=$post->ID' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . __('0') . '</span></a>', "<a href='edit-comments.php?p=$post->ID' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . __('1') . '</span></a>', "<a href='edit-comments.php?p=$post->ID' title='$pending_phrase' class='post-com-count'><span class='comment-count'>" . __('%') . '</span></a>');
|
||||||
|
if ( $pending_comments )
|
||||||
|
echo '</strong>';
|
||||||
|
echo '</span> ';
|
||||||
|
echo "<a href='" . get_permalink( $post->ID ) . "'>#</a>";
|
||||||
echo '</td>';
|
echo '</td>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1094,6 +1094,15 @@ strong .post-com-count {
|
||||||
background-position: center -3px;
|
background-position: center -3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.column-response .post-com-count-wrapper {
|
||||||
|
}
|
||||||
|
|
||||||
|
.column-response .post-com-count {
|
||||||
|
float: left;
|
||||||
|
margin-right: 5px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
/* end menu stuff */
|
/* end menu stuff */
|
||||||
|
|
||||||
/* Admin Footer */
|
/* Admin Footer */
|
||||||
|
|
|
@ -302,7 +302,7 @@ function wp_default_styles( &$styles ) {
|
||||||
|
|
||||||
$rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
|
$rtl_styles = array( 'global', 'colors', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'farbtastic' );
|
||||||
|
|
||||||
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081206' );
|
$styles->add( 'wp-admin', '/wp-admin/wp-admin.css', array(), '20081207' );
|
||||||
$styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
|
$styles->add_data( 'wp-admin', 'rtl', '/wp-admin/rtl.css' );
|
||||||
|
|
||||||
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20081206' );
|
$styles->add( 'ie', '/wp-admin/css/ie.css', array(), '20081206' );
|
||||||
|
|
Loading…
Reference in New Issue