2004-04-28 15:49:27 -04:00
< ? php
2008-08-16 03:27:34 -04:00
/**
* Edit Posts Administration Panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-18 23:03:06 -04:00
require_once ( 'admin.php' );
2004-04-24 00:47:27 -04:00
2008-08-20 00:06:36 -04:00
// Handle bulk actions
2008-09-29 05:26:21 -04:00
if ( isset ( $_GET [ 'action' ]) && ( - 1 != $_GET [ 'action' ] || - 1 != $_GET [ 'action2' ] ) ) {
$doaction = ( - 1 != $_GET [ 'action' ] ) ? $_GET [ 'action' ] : $_GET [ 'action2' ];
switch ( $doaction ) {
2008-08-20 00:06:36 -04:00
case 'delete' :
2008-09-25 17:12:33 -04:00
if ( isset ( $_GET [ 'post' ]) && ( isset ( $_GET [ 'doaction' ]) || isset ( $_GET [ 'doaction2' ])) ) {
2008-08-20 00:06:36 -04:00
check_admin_referer ( 'bulk-posts' );
foreach ( ( array ) $_GET [ 'post' ] 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...' ) );
}
}
}
break ;
case 'edit' :
2008-09-25 09:42:34 -04:00
if ( isset ( $_GET [ 'post' ]) ) {
check_admin_referer ( 'bulk-posts' );
2008-09-29 05:26:21 -04:00
2008-09-30 06:30:56 -04:00
if ( - 1 == $_GET [ '_status' ] ) {
$_GET [ 'post_status' ] = null ;
unset ( $_GET [ '_status' ], $_GET [ 'post_status' ]);
} else {
$_GET [ 'post_status' ] = $_GET [ '_status' ];
}
2008-09-29 05:26:21 -04:00
2008-09-25 09:42:34 -04:00
$done = bulk_edit_posts ( $_GET );
}
2008-08-20 00:06:36 -04:00
break ;
2008-02-13 15:53:18 -05:00
}
2008-09-25 09:42:34 -04:00
2008-02-13 15:53:18 -05:00
$sendback = wp_get_referer ();
2008-09-29 05:26:21 -04: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 15:53:18 -05:00
$sendback = preg_replace ( '|[^a-z0-9-~+_.?#=&;,/:]|i' , '' , $sendback );
2008-09-25 09:42:34 -04:00
if ( isset ( $done ) ) {
2008-09-30 06:30:56 -04:00
$done [ 'updated' ] = count ( $done [ 'updated' ] );
$done [ 'skipped' ] = count ( $done [ 'skipped' ] );
$done [ 'locked' ] = count ( $done [ 'locked' ] );
2008-09-25 09:42:34 -04:00
$sendback = add_query_arg ( $done , $sendback );
}
2008-02-13 15:53:18 -05:00
wp_redirect ( $sendback );
exit ();
2008-09-29 05:26:21 -04:00
} elseif ( isset ( $_GET [ '_wp_http_referer' ]) && ! empty ( $_GET [ '_wp_http_referer' ]) ) {
wp_redirect ( remove_query_arg ( array ( '_wp_http_referer' , '_wpnonce' ), stripslashes ( $_SERVER [ 'REQUEST_URI' ]) ) );
2008-03-02 15:17:30 -05:00
exit ;
2008-02-13 15:53:18 -05:00
}
2008-09-26 18:27:48 -04:00
if ( empty ( $title ) )
2008-10-17 17:22:11 -04:00
$title = __ ( 'Edit Posts' );
2006-11-18 02:31:29 -05:00
$parent_file = 'edit.php' ;
2008-02-13 15:53:18 -05:00
wp_enqueue_script ( 'admin-forms' );
2008-10-05 00:43:52 -04:00
wp_enqueue_script ( 'inline-edit-post' );
2008-09-10 21:46:30 -04:00
wp_enqueue_script ( 'posts' );
2003-10-26 15:34:24 -05:00
2007-10-09 18:49:42 -04:00
list ( $post_stati , $avail_post_stati ) = wp_edit_posts_query ();
2008-02-07 20:40:14 -05:00
2008-08-30 03:16:16 -04:00
if ( 1 == count ( $posts ) && is_singular () ) {
2008-03-11 16:10:39 -04:00
wp_enqueue_script ( 'admin-comments' );
2008-10-16 18:23:32 -04:00
enqueue_comment_hotkeys_js ();
2008-08-30 03:16:16 -04:00
}
2008-08-24 02:56:22 -04:00
2008-03-11 16:10:39 -04:00
require_once ( 'admin-header.php' );
2008-02-07 20:40:14 -05:00
if ( ! isset ( $_GET [ 'paged' ] ) )
$_GET [ 'paged' ] = 1 ;
2008-02-13 15:53:18 -05:00
2008-08-20 00:06:36 -04:00
if ( empty ( $_GET [ 'mode' ]) )
$mode = 'list' ;
else
2008-09-28 00:11:27 -04:00
$mode = attribute_escape ( $_GET [ 'mode' ]); ?>
2005-11-10 18:36:50 -05:00
2008-10-24 06:29:07 -04:00
< div id = " screen-options-wrap " class = " hidden " >
2008-09-28 00:11:27 -04:00
< h5 >< ? php _e ( 'Show on screen' ) ?> </h5>
< form id = " adv-settings " action = " " method = " get " >
< div class = " metabox-prefs " >
< ? php manage_columns_prefs ( 'post' ) ?>
< ? php wp_nonce_field ( 'hiddencolumns' , 'hiddencolumnsnonce' , false ); ?>
< br class = " clear " />
</ div ></ form >
2008-10-01 21:32:27 -04:00
</ div >
2008-09-30 06:30:56 -04:00
2008-09-28 00:11:27 -04:00
< ? php
2008-09-25 17:54:14 -04:00
if ( isset ( $_GET [ 'posted' ]) && $_GET [ 'posted' ] ) : $_GET [ 'posted' ] = ( int ) $_GET [ 'posted' ]; ?>
2008-09-25 09:42:34 -04: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>
< ? php $_SERVER [ 'REQUEST_URI' ] = remove_query_arg ( array ( 'posted' ), $_SERVER [ 'REQUEST_URI' ]);
endif ; ?>
2008-09-30 06:30:56 -04:00
< ? php if ( isset ( $_GET [ 'locked' ]) || isset ( $_GET [ 'skipped' ]) || isset ( $_GET [ 'updated' ]) ) { ?>
2008-09-25 09:42:34 -04:00
< div id = " message " class = " updated fade " >< p >
2008-09-30 06:30:56 -04:00
< ? php if ( ( int ) $_GET [ 'updated' ] ) {
2008-10-02 20:13:12 -04:00
printf ( __ngettext ( '%d post updated.' , '%d posts updated.' , $_GET [ 'updated' ] ), number_format_i18n ( $_GET [ 'updated' ] ) );
2008-09-30 06:30:56 -04:00
unset ( $_GET [ 'updated' ]);
}
2008-09-29 05:26:21 -04:00
2008-09-30 06:30:56 -04:00
if ( ( int ) $_GET [ 'skipped' ] )
unset ( $_GET [ 'skipped' ]);
if ( ( int ) $_GET [ 'locked' ] ) {
2008-10-02 20:13:12 -04:00
printf ( __ngettext ( ' %d post not updated, somebody is editing it.' , ' %d posts not updated, somebody is editing them.' , $_GET [ 'locked' ] ), number_format_i18n ( $_GET [ 'locked' ] ) );
2008-09-30 06:30:56 -04:00
unset ( $_GET [ 'locked' ]);
} ?>
2008-09-25 09:42:34 -04:00
</ p ></ div >
< ? php } ?>
2008-10-02 20:13:12 -04:00
< div class = " wrap " >
2008-10-17 17:22:11 -04:00
< h2 >< ? php echo wp_specialchars ( $title ); ?> </h2>
2008-02-07 20:40:14 -05:00
< ul class = " subsubsub " >
2008-02-05 15:30:24 -05:00
< ? php
2008-09-26 17:53:26 -04:00
if ( empty ( $locked_post_status ) ) :
2008-02-05 15:30:24 -05:00
$status_links = array ();
2008-03-23 03:10:17 -04: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 15:30:24 -05:00
foreach ( $post_stati as $status => $label ) {
$class = '' ;
2008-03-23 03:10:17 -04:00
if ( ! in_array ( $status , $avail_post_stati ) )
2008-02-05 15:30:24 -05:00
continue ;
2008-03-23 03:10:17 -04:00
if ( empty ( $num_posts -> $status ) )
2008-02-29 16:49:49 -05:00
continue ;
2008-08-14 13:00:37 -04:00
if ( isset ( $_GET [ 'post_status' ]) && $status == $_GET [ 'post_status' ] )
2008-02-05 15:30:24 -05:00
$class = ' class="current"' ;
2008-03-23 03:10:17 -04: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 15:30:24 -05:00
}
2008-09-29 05:26:21 -04:00
echo implode ( ' | </li>' , $status_links ) . '</li>' ;
2008-03-23 03:10:17 -04:00
unset ( $status_links );
2008-09-26 17:53:26 -04:00
endif ;
2008-02-05 15:30:24 -05:00
?>
</ ul >
2008-09-28 08:29:19 -04:00
< div class = " filter " >
< form id = " list-filter " action = " " method = " get " >
2007-05-29 00:28:10 -04:00
< ? php
2008-03-11 16:10:39 -04:00
if ( ! is_singular () ) {
2007-05-28 14:34:06 -04: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 02:53:23 -05:00
2007-05-28 14:34:06 -04:00
$arc_result = $wpdb -> get_results ( $arc_query );
2005-02-11 12:58:11 -05:00
2007-05-28 14:34:06 -04:00
$month_count = count ( $arc_result );
2005-02-11 12:58:11 -05:00
2008-08-14 13:00:37 -04:00
if ( $month_count && ! ( 1 == $month_count && 0 == $arc_result [ 0 ] -> mmonth ) ) {
$m = isset ( $_GET [ 'm' ]) ? ( int ) $_GET [ 'm' ] : 0 ;
?>
2008-02-07 20:40:14 -05:00
< select name = 'm' >
2008-08-14 13:00:37 -04:00
< option < ? php selected ( $m , 0 ); ?> value='0'><?php _e('Show all dates'); ?></option>
2008-02-07 20:40:14 -05: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 15:17:30 -05:00
2008-08-14 13:00:37 -04:00
if ( $arc_row -> yyear . $arc_row -> mmonth == $m )
2008-02-07 20:40:14 -05:00
$default = ' selected="selected"' ;
else
$default = '' ;
2008-03-02 15:17:30 -05:00
2008-02-07 20:40:14 -05: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 12:58:11 -05:00
2008-04-07 21:53:53 -04: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-20 19:27:23 -05:00
< input type = " submit " id = " post-query-submit " value = " <?php _e('Filter'); ?> " class = " button-secondary " />
2008-03-13 16:39:56 -04:00
2008-02-23 02:20:08 -05:00
< ? php } ?>
2008-09-28 08:29:19 -04:00
</ form >
</ div >
2008-10-10 20:12:37 -04:00
< form class = " search-form " action = " " method = " get " >
2008-10-02 20:13:12 -04:00
< p class = " search-box " >
2008-10-02 14:03:45 -04:00
< label class = " hidden " for = " post-search-input " >< ? php _e ( 'Search Posts' ); ?> :</label>
2008-10-02 20:13:12 -04:00
< input type = " text " class = " search-input " id = " post-search-input " name = " s " value = " <?php the_search_query(); ?> " />
2008-10-02 14:03:45 -04:00
< input type = " submit " value = " <?php _e( 'Search Posts' ); ?> " class = " button " />
</ p >
2008-10-02 20:13:12 -04:00
</ form >
< form id = " posts-filter " action = " " method = " get " >
2008-10-02 14:03:45 -04:00
2008-09-28 08:29:19 -04:00
< ? php if ( isset ( $_GET [ 'post_status' ] ) ) : ?>
< input type = " hidden " name = " post_status " value = " <?php echo attribute_escape( $_GET['post_status'] ) ?> " />
< ? php endif ; ?>
< input type = " hidden " name = " mode " value = " <?php echo $mode ; ?> " />
< div class = " tablenav " >
< ? php
$page_links = paginate_links ( array (
'base' => add_query_arg ( 'paged' , '%#%' ),
'format' => '' ,
'total' => $wp_query -> max_num_pages ,
'current' => $_GET [ 'paged' ]
));
?>
< div class = " alignleft " >
< select name = " action " >
< option value = " -1 " selected = " selected " >< ? php _e ( 'Actions' ); ?> </option>
< option value = " edit " >< ? php _e ( 'Edit' ); ?> </option>
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction " id = " doaction " class = " button-secondary action " />
< ? php wp_nonce_field ( 'bulk-posts' ); ?>
2008-02-07 20:40:14 -05:00
</ div >
2005-02-11 12:58:11 -05:00
2008-10-02 20:13:12 -04:00
< ? php if ( $page_links ) { ?>
< div class = " tablenav-pages " >< ? php echo $page_links ; ?> </div>
< ? php } ?>
< div class = " view-switch " >
< a href = " <?php echo clean_url(add_query_arg('mode', 'list', $_SERVER['REQUEST_URI'] )) ?> " >< img < ? php if ( 'list' == $mode ) echo 'class="current"' ; ?> src="images/list.gif" title="<?php _e('List View') ?>" alt="<?php _e('List View') ?>" /></a>
< a href = " <?php echo clean_url(add_query_arg('mode', 'excerpt', $_SERVER['REQUEST_URI'] )) ?> " >< img < ? php if ( 'excerpt' == $mode ) echo 'class="current"' ; ?> src="images/exc.gif" title="<?php _e('Excerpt View') ?>" alt="<?php _e('Excerpt View') ?>" /></a>
2008-02-07 20:40:14 -05:00
</ div >
2007-05-28 14:34:06 -04:00
2008-10-02 20:13:12 -04:00
< div class = " clear " ></ div >
</ div >
< div class = " clear " ></ div >
2005-02-11 12:58:11 -05:00
2007-05-29 00:28:10 -04:00
< ? php include ( 'edit-post-rows.php' ); ?>
2005-08-30 22:39:17 -04:00
2008-02-07 20:40:14 -05:00
< div class = " tablenav " >
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-03-23 02:41:43 -04:00
2008-09-25 17:12:33 -04:00
< div class = " alignleft " >
< select name = " action2 " >
< option value = " -1 " selected = " selected " >< ? php _e ( 'Actions' ); ?> </option>
< option value = " edit " >< ? php _e ( 'Edit' ); ?> </option>
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction2 " id = " doaction2 " class = " button-secondary action " />
2008-02-28 01:50:25 -05:00
< br class = " clear " />
2005-03-27 21:34:16 -05:00
</ div >
2008-09-25 17:12:33 -04:00
< br class = " clear " />
</ div >
</ form >
< ? php inline_edit_row ( 'post' ); ?>
< div id = " ajax-response " ></ div >
2005-03-27 21:34:16 -05:00
2008-03-23 02:41:43 -04:00
< br class = " clear " />
2004-02-13 10:36:28 -05:00
< ? php
2007-05-28 14:34:06 -04:00
2008-03-11 16:10:39 -04:00
if ( 1 == count ( $posts ) && is_singular () ) :
2003-10-26 15:34:24 -05:00
2008-04-14 12:13:25 -04: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 01:50:25 -05:00
if ( $comments ) :
2007-10-19 14:39:07 -04:00
// Make sure comments, post, and post_author are cached
2007-06-08 02:56:34 -04:00
update_comment_cache ( $comments );
2007-10-19 14:39:07 -04:00
$post = get_post ( $id );
$authordata = get_userdata ( $post -> post_author );
2006-11-19 02:56:05 -05:00
?>
2008-02-28 01:50:25 -05:00
< br class = " clear " />
< table class = " widefat " style = " margin-top: .5em " >
< thead >
< tr >
< th scope = " col " >< ? php _e ( 'Comment' ) ?> </th>
2008-08-20 18:19:14 -04:00
< th scope = " col " >< ? php _e ( 'Author' ) ?> </th>
2008-08-20 00:06:36 -04:00
< th scope = " col " >< ? php _e ( 'Submitted' ) ?> </th>
2008-02-28 01:50:25 -05:00
</ tr >
</ thead >
2008-09-29 05:26:21 -04:00
< tfoot >
< tr >
< th scope = " col " >< ? php _e ( 'Comment' ) ?> </th>
< th scope = " col " >< ? php _e ( 'Author' ) ?> </th>
< th scope = " col " >< ? php _e ( 'Submitted' ) ?> </th>
</ tr >
</ tfoot >
2008-02-28 01:50:25 -05:00
< tbody id = " the-comment-list " class = " list:comment " >
2006-04-19 04:30:56 -04:00
< ? php
2008-02-28 01:50:25 -05:00
foreach ( $comments as $comment )
2008-08-20 00:06:36 -04:00
_wp_comment_row ( $comment -> comment_ID , 'single' , false , false );
2007-10-19 14:39:07 -04:00
?>
2008-02-28 01:50:25 -05:00
</ tbody >
</ table >
< ? php
2008-08-24 02:56:22 -04:00
wp_comment_reply ();
2008-02-28 01:50:25 -05:00
endif ; // comments
endif ; // posts;
?>
2006-11-19 02:56:05 -05:00
</ div >
2007-05-28 14:34:06 -04:00
< ? php include ( 'admin-footer.php' ); ?>