2004-04-28 21:49:27 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Edit Posts Administration Panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-19 05:03:06 +02:00
require_once ( 'admin.php' );
2004-04-24 06:47:27 +02:00
2008-02-13 21:53:18 +01:00
// Handle bulk deletes
if ( isset ( $_GET [ 'deleteit' ]) && isset ( $_GET [ 'delete' ]) ) {
check_admin_referer ( 'bulk-posts' );
foreach ( ( array ) $_GET [ 'delete' ] as $post_id_del ) {
$post_del = & get_post ( $post_id_del );
if ( ! current_user_can ( 'delete_post' , $post_id_del ) )
wp_die ( __ ( 'You are not allowed to delete this post.' ) );
if ( $post_del -> post_type == 'attachment' ) {
if ( ! wp_delete_attachment ( $post_id_del ) )
wp_die ( __ ( 'Error in deleting...' ) );
} else {
if ( ! wp_delete_post ( $post_id_del ) )
wp_die ( __ ( 'Error in deleting...' ) );
}
}
$sendback = wp_get_referer ();
2008-05-27 19:46:01 +02:00
if ( strpos ( $sendback , 'post.php' ) !== false ) $sendback = admin_url ( 'post-new.php' );
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
2008-02-13 21:53:18 +01:00
$sendback = preg_replace ( '|[^a-z0-9-~+_.?#=&;,/:]|i' , '' , $sendback );
wp_redirect ( $sendback );
exit ();
2008-02-15 22:02:50 +01:00
} elseif ( ! empty ( $_GET [ '_wp_http_referer' ]) ) {
wp_redirect ( remove_query_arg ( array ( '_wp_http_referer' , '_wpnonce' ), stripslashes ( $_SERVER [ 'REQUEST_URI' ])));
2008-03-02 21:17:30 +01:00
exit ;
2008-02-13 21:53:18 +01:00
}
2006-11-18 08:31:29 +01:00
$title = __ ( 'Posts' );
$parent_file = 'edit.php' ;
2008-02-13 21:53:18 +01:00
wp_enqueue_script ( 'admin-forms' );
2003-10-26 21:34:24 +01:00
2007-10-10 00:49:42 +02:00
list ( $post_stati , $avail_post_stati ) = wp_edit_posts_query ();
2008-02-08 02:40:14 +01:00
2008-03-11 21:10:39 +01:00
if ( 1 == count ( $posts ) && is_singular () )
wp_enqueue_script ( 'admin-comments' );
require_once ( 'admin-header.php' );
2008-02-08 02:40:14 +01:00
if ( ! isset ( $_GET [ 'paged' ] ) )
$_GET [ 'paged' ] = 1 ;
2008-02-13 21:53:18 +01:00
2004-04-28 10:57:11 +02:00
?>
2005-11-11 00:36:50 +01:00
2007-05-28 20:34:06 +02:00
< div class = " wrap " >
2005-11-11 00:36:50 +01:00
2008-02-05 22:27:10 +01:00
< form id = " posts-filter " action = " " method = " get " >
2007-05-28 20:34:06 +02:00
< h2 >< ? php
if ( is_single () ) {
printf ( __ ( 'Comments on %s' ), apply_filters ( " the_title " , $post -> post_title ));
} else {
2008-02-08 02:40:14 +01:00
$post_status_label = _c ( 'Manage Posts|manage posts header' );
2008-02-05 22:16:19 +01:00
if ( isset ( $_GET [ 'post_status' ]) && in_array ( $_GET [ 'post_status' ], array_keys ( $post_stati ) ) )
$post_status_label = $post_stati [ $_GET [ 'post_status' ]][ 1 ];
2008-08-14 19:00:37 +02:00
//if ( $post_listing_pageable && !is_archive() && !is_search() ) //Unreachable code: $post_listing_pageable is undefined, Similar code in upload.php
// $h2_noun = is_paged() ? sprintf(__( 'Previous %s' ), $post_status_label) : sprintf(__('Latest %s'), $post_status_label);
//else
2007-05-28 20:34:06 +02:00
$h2_noun = $post_status_label ;
// Use $_GET instead of is_ since they can override each other
2007-05-29 06:28:10 +02:00
$h2_author = '' ;
2008-08-14 19:00:37 +02:00
$_GET [ 'author' ] = isset ( $_GET [ 'author' ]) ? ( int ) $_GET [ 'author' ] : 0 ;
2007-06-14 18:24:28 +02:00
if ( $_GET [ 'author' ] != 0 ) {
if ( $_GET [ 'author' ] == '-' . $user_ID ) { // author exclusion
$h2_author = ' ' . __ ( 'by other authors' );
} else {
$author_user = get_userdata ( get_query_var ( 'author' ) );
2007-09-04 01:32:58 +02:00
$h2_author = ' ' . sprintf ( __ ( 'by %s' ), wp_specialchars ( $author_user -> display_name ));
2007-06-14 18:24:28 +02:00
}
2007-05-29 06:28:10 +02:00
}
2007-05-28 20:34:06 +02:00
$h2_search = isset ( $_GET [ 's' ]) && $_GET [ 's' ] ? ' ' . sprintf ( __ ( 'matching “%s”' ), wp_specialchars ( get_search_query () ) ) : '' ;
$h2_cat = isset ( $_GET [ 'cat' ]) && $_GET [ 'cat' ] ? ' ' . sprintf ( __ ( 'in “%s”' ), single_cat_title ( '' , false ) ) : '' ;
2008-01-25 20:29:01 +01:00
$h2_tag = isset ( $_GET [ 'tag' ]) && $_GET [ 'tag' ] ? ' ' . sprintf ( __ ( 'tagged with “%s”' ), single_tag_title ( '' , false ) ) : '' ;
2007-05-28 20:34:06 +02:00
$h2_month = isset ( $_GET [ 'm' ]) && $_GET [ 'm' ] ? ' ' . sprintf ( __ ( 'during %s' ), single_month_title ( ' ' , false ) ) : '' ;
2008-01-25 20:29:01 +01:00
printf ( _c ( '%1$s%2$s%3$s%4$s%5$s%6$s|You can reorder these: 1: Posts, 2: by {s}, 3: matching {s}, 4: in {s}, 5: tagged with {s}, 6: during {s}' ), $h2_noun , $h2_author , $h2_search , $h2_cat , $h2_tag , $h2_month );
2007-05-28 20:34:06 +02:00
}
?> </h2>
2005-02-11 18:58:11 +01:00
2008-02-08 02:40:14 +01:00
< ul class = " subsubsub " >
2008-02-05 21:30:24 +01:00
< ? php
$status_links = array ();
2008-03-23 08:10:17 +01:00
$num_posts = wp_count_posts ( 'post' , 'readable' );
$class = empty ( $_GET [ 'post_status' ] ) ? ' class="current"' : '' ;
$status_links [] = " <li><a href='edit.php' $class > " . __ ( 'All Posts' ) . '</a>' ;
2008-02-05 21:30:24 +01:00
foreach ( $post_stati as $status => $label ) {
$class = '' ;
2008-03-23 08:10:17 +01:00
if ( ! in_array ( $status , $avail_post_stati ) )
2008-02-05 21:30:24 +01:00
continue ;
2008-03-23 08:10:17 +01:00
if ( empty ( $num_posts -> $status ) )
2008-02-29 22:49:49 +01:00
continue ;
2008-08-14 19:00:37 +02:00
if ( isset ( $_GET [ 'post_status' ]) && $status == $_GET [ 'post_status' ] )
2008-02-05 21:30:24 +01:00
$class = ' class="current"' ;
2008-03-23 08:10:17 +01:00
$status_links [] = " <li><a href='edit.php?post_status= $status ' $class > " .
sprintf ( __ngettext ( $label [ 2 ][ 0 ], $label [ 2 ][ 1 ], $num_posts -> $status ), number_format_i18n ( $num_posts -> $status ) ) . '</a>' ;
2008-02-05 21:30:24 +01:00
}
2008-03-23 08:10:17 +01:00
echo implode ( ' |</li>' , $status_links ) . '</li>' ;
unset ( $status_links );
2008-02-05 21:30:24 +01:00
?>
</ ul >
2008-02-29 23:02:49 +01:00
< ? php if ( isset ( $_GET [ 'post_status' ] ) ) : ?>
< input type = " hidden " name = " post_status " value = " <?php echo attribute_escape( $_GET['post_status'] ) ?> " />
2008-02-13 09:55:17 +01:00
< ? php
2008-02-29 23:02:49 +01:00
endif ;
2008-02-13 09:55:17 +01:00
if ( isset ( $_GET [ 'posted' ]) && $_GET [ 'posted' ] ) : $_GET [ 'posted' ] = ( int ) $_GET [ 'posted' ]; ?>
2008-07-29 07:22:58 +02:00
< div id = " message " class = " updated fade " >< p >< strong >< ? php _e ( 'Your post has been saved.' ); ?> </strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View post'); ?></a> | <a href="<?php echo get_edit_post_link( $_GET['posted'] ); ?>"><?php _e('Edit post'); ?></a></p></div>
2008-02-26 21:35:40 +01:00
< ? php $_SERVER [ 'REQUEST_URI' ] = remove_query_arg ( array ( 'posted' ), $_SERVER [ 'REQUEST_URI' ]);
2008-02-13 09:55:17 +01:00
endif ;
?>
2008-02-08 02:40:14 +01:00
< p id = " post-search " >
2008-05-04 12:37:06 +02:00
< label class = " hidden " for = " post-search-input " >< ? php _e ( 'Search Posts' ); ?> :</label>
2008-02-08 02:40:14 +01:00
< input type = " text " id = " post-search-input " name = " s " value = " <?php the_search_query(); ?> " />
2008-02-19 21:33:59 +01:00
< input type = " submit " value = " <?php _e( 'Search Posts' ); ?> " class = " button " />
2008-02-08 02:40:14 +01:00
</ p >
< div class = " tablenav " >
2005-02-11 18:58:11 +01:00
2007-09-04 01:32:58 +02:00
< ? php
2008-02-08 02:40:14 +01:00
$page_links = paginate_links ( array (
'base' => add_query_arg ( 'paged' , '%#%' ),
'format' => '' ,
2008-03-18 00:02:12 +01:00
'total' => $wp_query -> max_num_pages ,
2008-02-08 02:40:14 +01:00
'current' => $_GET [ 'paged' ]
));
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
2007-05-29 06:28:10 +02:00
?>
2005-02-11 18:58:11 +01:00
2008-03-15 00:58:31 +01:00
< div class = " alignleft " >
2008-03-07 19:35:24 +01:00
< input type = " submit " value = " <?php _e('Delete'); ?> " name = " deleteit " class = " button-secondary delete " />
2008-02-13 21:53:18 +01:00
< ? php wp_nonce_field ( 'bulk-posts' ); ?>
2007-05-29 06:28:10 +02:00
< ? php
2008-03-11 21:10:39 +01:00
if ( ! is_singular () ) {
2007-05-28 20:34:06 +02:00
$arc_query = " SELECT DISTINCT YEAR(post_date) AS yyear, MONTH(post_date) AS mmonth FROM $wpdb->posts WHERE post_type = 'post' ORDER BY post_date DESC " ;
2006-02-12 08:53:23 +01:00
2007-05-28 20:34:06 +02:00
$arc_result = $wpdb -> get_results ( $arc_query );
2005-02-11 18:58:11 +01:00
2007-05-28 20:34:06 +02:00
$month_count = count ( $arc_result );
2005-02-11 18:58:11 +01:00
2008-08-14 19:00:37 +02:00
if ( $month_count && ! ( 1 == $month_count && 0 == $arc_result [ 0 ] -> mmonth ) ) {
$m = isset ( $_GET [ 'm' ]) ? ( int ) $_GET [ 'm' ] : 0 ;
?>
2008-02-08 02:40:14 +01:00
< select name = 'm' >
2008-08-14 19:00:37 +02:00
< option < ? php selected ( $m , 0 ); ?> value='0'><?php _e('Show all dates'); ?></option>
2008-02-08 02:40:14 +01:00
< ? php
foreach ( $arc_result as $arc_row ) {
if ( $arc_row -> yyear == 0 )
continue ;
$arc_row -> mmonth = zeroise ( $arc_row -> mmonth , 2 );
2008-03-02 21:17:30 +01:00
2008-08-14 19:00:37 +02:00
if ( $arc_row -> yyear . $arc_row -> mmonth == $m )
2008-02-08 02:40:14 +01:00
$default = ' selected="selected"' ;
else
$default = '' ;
2008-03-02 21:17:30 +01:00
2008-02-08 02:40:14 +01:00
echo " <option $default value=' $arc_row->yyear $arc_row->mmonth '> " ;
echo $wp_locale -> get_month ( $arc_row -> mmonth ) . " $arc_row->yyear " ;
echo " </option> \n " ;
}
?>
</ select >
< ? php } ?>
2005-02-11 18:58:11 +01:00
2008-04-08 03:53:53 +02:00
< ? php
$dropdown_options = array ( 'show_option_all' => __ ( 'View all categories' ), 'hide_empty' => 0 , 'hierarchical' => 1 ,
'show_count' => 0 , 'orderby' => 'name' , 'selected' => $cat );
wp_dropdown_categories ( $dropdown_options );
do_action ( 'restrict_manage_posts' );
?>
2008-02-21 01:27:23 +01:00
< input type = " submit " id = " post-query-submit " value = " <?php _e('Filter'); ?> " class = " button-secondary " />
2008-03-13 21:39:56 +01:00
2008-02-23 08:20:08 +01:00
< ? php } ?>
2008-02-08 02:40:14 +01:00
</ div >
2005-02-11 18:58:11 +01:00
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2008-02-08 02:40:14 +01:00
</ div >
2007-05-28 20:34:06 +02:00
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2005-02-11 18:58:11 +01:00
2007-05-29 06:28:10 +02:00
< ? php include ( 'edit-post-rows.php' ); ?>
2005-08-31 04:39:17 +02:00
2008-02-13 21:53:18 +01:00
</ form >
2005-08-31 04:39:17 +02:00
< div id = " ajax-response " ></ div >
2005-03-28 04:34:16 +02:00
2008-02-08 02:40:14 +01:00
< div class = " tablenav " >
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-03-23 07:41:43 +01:00
2008-02-28 07:50:25 +01:00
< br class = " clear " />
2005-03-28 04:34:16 +02:00
</ div >
2008-03-23 07:41:43 +01:00
< br class = " clear " />
2004-02-13 16:36:28 +01:00
< ? php
2007-05-28 20:34:06 +02:00
2008-03-11 21:10:39 +01:00
if ( 1 == count ( $posts ) && is_singular () ) :
2003-10-26 21:34:24 +01:00
2008-04-14 18:13:25 +02:00
$comments = $wpdb -> get_results ( $wpdb -> prepare ( " SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved != 'spam' ORDER BY comment_date " , $id ) );
2008-02-28 07:50:25 +01:00
if ( $comments ) :
2007-10-19 20:39:07 +02:00
// Make sure comments, post, and post_author are cached
2007-06-08 08:56:34 +02:00
update_comment_cache ( $comments );
2007-10-19 20:39:07 +02:00
$post = get_post ( $id );
$authordata = get_userdata ( $post -> post_author );
2006-11-19 08:56:05 +01:00
?>
2008-02-28 07:50:25 +01:00
< br class = " clear " />
< table class = " widefat " style = " margin-top: .5em " >
< thead >
< tr >
< th scope = " col " >< ? php _e ( 'Comment' ) ?> </th>
< th scope = " col " >< ? php _e ( 'Date' ) ?> </th>
< th scope = " col " >< ? php _e ( 'Actions' ) ?> </th>
</ tr >
</ thead >
< tbody id = " the-comment-list " class = " list:comment " >
2006-04-19 10:30:56 +02:00
< ? php
2008-02-28 07:50:25 +01:00
foreach ( $comments as $comment )
2008-02-28 23:12:04 +01:00
_wp_comment_row ( $comment -> comment_ID , 'detail' , false , false );
2007-10-19 20:39:07 +02:00
?>
2008-02-28 07:50:25 +01:00
</ tbody >
</ table >
< ? php
endif ; // comments
endif ; // posts;
?>
2006-11-19 08:56:05 +01:00
</ div >
2007-05-28 20:34:06 +02:00
< ? php include ( 'admin-footer.php' ); ?>