2004-08-10 05:58:19 +00:00
<? php
2008-08-16 07:27:34 +00:00
/**
* Edit Pages Administration Panel.
*
* @package WordPress
* @subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-19 03:03:06 +00:00
require_once ( 'admin.php' );
2008-02-13 23:54:11 +00:00
2008-09-25 13:42:34 +00:00
// Handle bulk actions
2008-09-29 09:26:21 +00:00
if ( isset ( $_GET [ 'action' ]) && ( - 1 != $_GET [ 'action' ] || - 1 != $_GET [ 'action2' ] ) ) {
$doaction = ( - 1 != $_GET [ 'action' ] ) ? $_GET [ 'action' ] : $_GET [ 'action2' ];
switch ( $doaction ) {
2008-09-25 13:42:34 +00:00
case 'delete' :
2008-11-11 11:34:08 +00:00
if ( isset ( $_GET [ 'post' ]) && ! isset ( $_GET [ 'bulk_edit' ]) && ( isset ( $_GET [ 'doaction' ]) || isset ( $_GET [ 'doaction2' ])) ) {
2008-09-25 13:42:34 +00:00
check_admin_referer ( 'bulk-pages' );
2008-12-01 18:02:16 +00:00
$deleted = 0 ;
2008-09-25 13:42:34 +00:00
foreach ( ( array ) $_GET [ 'post' ] as $post_id_del ) {
$post_del = & get_post ( $post_id_del );
2008-09-29 09:26:21 +00:00
2008-09-25 13:42:34 +00:00
if ( ! current_user_can ( 'delete_page' , $post_id_del ) )
wp_die ( __ ( 'You are not allowed to delete this page.' ) );
2008-09-29 09:26:21 +00:00
2008-09-25 13:42:34 +00:00
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...' ) );
}
2008-12-01 18:02:16 +00:00
$deleted ++ ;
2008-09-25 13:42:34 +00:00
}
2008-08-20 04:06:36 +00:00
}
2008-09-25 13:42:34 +00:00
break ;
case 'edit' :
2008-11-11 11:34:08 +00:00
if ( isset ( $_GET [ 'post' ]) && isset ( $_GET [ 'bulk_edit' ]) ) {
2008-09-25 13:42:34 +00:00
check_admin_referer ( 'bulk-pages' );
2008-09-29 09:26:21 +00:00
2008-09-30 10:30:56 +00:00
if ( - 1 == $_GET [ '_status' ] ) {
$_GET [ 'post_status' ] = null ;
unset ( $_GET [ '_status' ], $_GET [ 'post_status' ]);
} else {
$_GET [ 'post_status' ] = $_GET [ '_status' ];
}
2008-09-29 09:26:21 +00:00
2008-09-25 13:42:34 +00:00
$done = bulk_edit_posts ( $_GET );
}
break ;
2008-08-20 04:06:36 +00:00
}
2008-11-11 11:34:08 +00:00
2008-09-25 13:42:34 +00:00
$sendback = wp_get_referer ();
if ( strpos ( $sendback , 'page.php' ) !== false ) $sendback = admin_url ( 'page-new.php' );
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
if ( isset ( $done ) ) {
2008-09-30 10:30:56 +00:00
$done [ 'updated' ] = count ( $done [ 'updated' ] );
$done [ 'skipped' ] = count ( $done [ 'skipped' ] );
$done [ 'locked' ] = count ( $done [ 'locked' ] );
2008-09-25 13:42:34 +00:00
$sendback = add_query_arg ( $done , $sendback );
}
2008-12-01 18:02:16 +00:00
if ( isset ( $deleted ) )
$sendback = add_query_arg ( 'deleted' , $deleted , $sendback );
2008-09-25 13:42:34 +00:00
wp_redirect ( $sendback );
exit ();
2008-09-29 09:26:21 +00: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 20:17:30 +00:00
exit ;
2008-02-13 23:54:11 +00:00
}
2008-09-30 17:51:50 +00:00
if ( empty ( $title ) )
2008-10-17 20:02:03 +00:00
$title = __ ( 'Edit Pages' );
2008-11-29 18:09:09 +00:00
$parent_file = 'edit-pages.php' ;
2008-10-05 04:43:52 +00:00
wp_enqueue_script ( 'inline-edit-post' );
2007-05-28 18:34:06 +00:00
$post_stati = array ( // array( adj, noun )
2009-03-13 03:53:39 +00:00
'publish' => array ( _x ( 'Published' , 'page' ), __ ( 'Published pages' ), _nx_noop ( 'Published <span class="count">(%s)</span>' , 'Published <span class="count">(%s)</span>' , 'page' )),
'future' => array ( _x ( 'Scheduled' , 'page' ), __ ( 'Scheduled pages' ), _nx_noop ( 'Scheduled <span class="count">(%s)</span>' , 'Scheduled <span class="count">(%s)</span>' , 'page' )),
2009-04-21 22:06:15 +00:00
'pending' => array ( _x ( 'Pending Review' , 'page' ), __ ( 'Pending pages' ), _nx_noop ( 'Pending Review <span class="count">(%s)</span>' , 'Pending Review <span class="count">(%s)</span>' , 'page' )),
2009-03-13 03:53:39 +00:00
'draft' => array ( _x ( 'Draft' , 'page' ), _x ( 'Drafts' , 'manage posts header' ), _nx_noop ( 'Draft <span class="count">(%s)</span>' , 'Drafts <span class="count">(%s)</span>' , 'page' )),
'private' => array ( _x ( 'Private' , 'page' ), __ ( 'Private pages' ), _nx_noop ( 'Private <span class="count">(%s)</span>' , 'Private <span class="count">(%s)</span>' , 'page' ))
2008-02-12 05:51:53 +00:00
);
2007-05-28 18:34:06 +00:00
2008-11-04 18:18:30 +00:00
$query = array ( 'post_type' => 'page' , 'orderby' => 'menu_order title' , 'what_to_show' => 'posts' ,
'posts_per_page' => - 1 , 'posts_per_archive_page' => - 1 , 'order' => 'asc' );
2008-08-20 04:06:36 +00:00
$post_status_label = __ ( 'Pages' );
2007-05-28 18:34:06 +00: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-11-04 18:18:30 +00:00
$query [ 'post_status' ] = $_GET [ 'post_status' ];
$query [ 'perm' ] = 'readable' ;
2007-05-28 18:34:06 +00:00
}
2008-11-04 18:18:30 +00:00
$query = apply_filters ( 'manage_pages_query' , $query );
wp ( $query );
2008-03-11 20:26:10 +00:00
2008-08-30 07:16:16 +00:00
if ( is_singular () ) {
2008-03-11 20:26:10 +00:00
wp_enqueue_script ( 'admin-comments' );
2008-10-16 22:23:32 +00:00
enqueue_comment_hotkeys_js ();
2008-08-30 07:16:16 +00:00
}
2008-08-24 06:56:22 +00:00
2008-09-28 04:11:27 +00:00
require_once ( 'admin-header.php' ); ?>
2008-03-11 20:26:10 +00:00
2008-11-05 19:17:22 +00:00
<div class="wrap">
2008-11-26 13:51:25 +00:00
<?php screen_icon(); ?>
2008-12-04 12:01:02 +00:00
<h2><?php echo wp_specialchars( $title );
if ( isset($_GET['s']) && $_GET['s'] )
printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', wp_specialchars( get_search_query() ) ); ?>
</h2>
2008-11-05 19:17:22 +00:00
2008-12-01 18:02:16 +00:00
<?php if ( isset($_GET['locked']) || isset($_GET['skipped']) || isset($_GET['updated']) || isset($_GET['deleted']) ) { ?>
2008-09-25 13:42:34 +00:00
<div id="message" class="updated fade"><p>
2008-12-01 18:02:16 +00:00
<?php if ( isset($_GET['updated']) && (int) $_GET['updated'] ) {
2009-02-20 19:35:16 +00:00
printf( _n( '%s page updated.', '%s pages updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) );
2008-09-30 10:30:56 +00:00
unset($_GET['updated']);
}
2008-12-01 18:02:16 +00:00
if ( isset($_GET['skipped']) && (int) $_GET['skipped'] ) {
2009-02-20 19:35:16 +00:00
printf( _n( '%s page not updated, invalid parent page specified.', '%s pages not updated, invalid parent page specified.', $_GET['skipped'] ), number_format_i18n( $_GET['skipped'] ) );
2008-09-30 10:30:56 +00:00
unset($_GET['skipped']);
2008-09-29 09:26:21 +00:00
}
2008-12-01 18:02:16 +00:00
if ( isset($_GET['locked']) && (int) $_GET['locked'] ) {
2009-02-20 19:35:16 +00:00
printf( _n( '%s page not updated, somebody is editing it.', '%s pages not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['skipped'] ) );
2008-09-30 10:30:56 +00:00
unset($_GET['locked']);
2008-11-11 11:34:08 +00:00
}
2008-12-01 18:02:16 +00:00
if ( isset($_GET['deleted']) && (int) $_GET['deleted'] ) {
2009-02-20 19:35:16 +00:00
printf( _n( 'Page deleted.', '%s pages deleted.', $_GET['deleted'] ), number_format_i18n( $_GET['deleted'] ) );
2008-12-01 18:02:16 +00:00
unset($_GET['deleted']);
}
$_SERVER['REQUEST_URI'] = remove_query_arg( array('locked', 'skipped', 'updated', 'deleted'), $_SERVER['REQUEST_URI'] );
2008-11-11 11:34:08 +00:00
?>
2008-09-25 13:42:34 +00:00
</p></div>
<?php } ?>
2008-09-29 09:26:21 +00:00
<?php if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?>
<div id="message" class="updated fade"><p><strong><?php _e('Your page has been saved.'); ?></strong> <a href="<?php echo get_permalink( $_GET['posted'] ); ?>"><?php _e('View page'); ?></a> | <a href="<?php echo get_edit_post_link( $_GET['posted'] ); ?>"><?php _e('Edit page'); ?></a></p></div>
<?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);
endif; ?>
2008-09-11 05:36:34 +00:00
2008-10-25 23:49:55 +00:00
<form id="posts-filter" action="" method="get">
2008-02-12 05:51:53 +00:00
<ul class="subsubsub">
<?php
$avail_post_stati = get_available_post_statuses('page');
2008-09-30 17:51:50 +00:00
if ( empty($locked_post_status) ) :
2008-02-12 05:51:53 +00:00
$status_links = array();
2008-02-29 22:34:29 +00:00
$num_posts = wp_count_posts('page', 'readable');
2008-11-06 21:56:29 +00:00
$total_posts = array_sum( (array) $num_posts );
2008-03-06 10:23:00 +00:00
$class = empty($_GET['post_status']) ? ' class="current"' : '';
2009-02-20 19:35:16 +00:00
$status_links[] = "<li><a href='edit-pages.php'$class>" . sprintf( _n( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $total_posts ), number_format_i18n( $total_posts ) ) . '</a>';
2008-02-12 05:51:53 +00:00
foreach ( $post_stati as $status => $label ) {
$class = '';
2004-08-10 05:58:19 +00:00
2008-02-12 05:51:53 +00:00
if ( !in_array($status, $avail_post_stati) )
continue;
2008-03-02 20:17:30 +00:00
2008-08-08 17:05:10 +00:00
if ( isset( $_GET['post_status'] ) && $status == $_GET['post_status'] )
2008-02-12 05:51:53 +00:00
$class = ' class="current"';
2007-06-14 02:25:30 +00:00
2009-03-13 03:53:39 +00:00
$status_links[] = "<li><a href='edit-pages.php?post_status=$status'$class>" . sprintf( _nx( $label[2][0], $label[2][1], $num_posts->$status, $label[2][2] ), number_format_i18n( $num_posts->$status ) ) . '</a>';
2008-02-12 05:51:53 +00:00
}
2008-11-06 21:56:29 +00:00
echo implode( " |</li>\n", $status_links ) . '</li>';
2008-02-12 05:51:53 +00:00
unset($status_links);
2008-09-30 17:51:50 +00:00
endif;
2008-02-12 05:51:53 +00:00
?>
</ul>
2007-05-28 18:34:06 +00:00
2008-10-03 00:13:12 +00:00
<p class="search-box">
2008-10-25 18:43:33 +00:00
<label class="hidden" for="page-search-input"><?php _e( 'Search Pages' ); ?>:</label>
2009-04-16 04:41:05 +00:00
<input type="text" id="page-search-input" name="s" value="<?php _admin_search_query(); ?>" />
2008-11-07 23:12:39 +00:00
<input type="submit" value="<?php _e( 'Search Pages' ); ?>" class="button" />
2008-10-02 18:03:45 +00:00
</p>
2008-02-29 22:38:20 +00:00
<?php if ( isset($_GET['post_status'] ) ) : ?>
<input type="hidden" name="post_status" value="<?php echo attribute_escape($_GET['post_status']) ?>" />
2008-09-29 09:26:21 +00:00
<?php endif; ?>
2008-02-26 20:53:07 +00:00
2008-11-26 00:36:25 +00:00
<?php if ($posts) { ?>
2008-02-12 05:51:53 +00:00
<div class="tablenav">
2007-05-29 04:28:10 +00:00
2008-06-15 00:45:01 +00:00
<?php
2008-08-08 17:05:10 +00:00
$pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0;
2008-06-15 00:45:01 +00:00
if ( empty($pagenum) )
$pagenum = 1;
2009-03-27 22:47:47 +00:00
$per_page = get_user_option('edit_pages_per_page');
if ( empty( $per_page ) || $per_page < 0 )
2008-06-15 00:45:01 +00:00
$per_page = 20;
2008-11-06 22:52:05 +00:00
$num_pages = ceil($wp_query->post_count / $per_page);
2008-06-15 00:45:01 +00:00
$page_links = paginate_links( array(
'base' => add_query_arg( 'pagenum', '%#%' ),
'format' => '',
2008-11-27 00:28:24 +00:00
'prev_text' => __('«'),
'next_text' => __('»'),
2008-06-15 00:45:01 +00:00
'total' => $num_pages,
'current' => $pagenum
));
2008-11-06 21:56:29 +00:00
if ( $page_links ) : ?>
2008-11-10 17:42:51 +00:00
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
2008-11-06 22:52:05 +00:00
number_format_i18n( ( $pagenum - 1 ) * $per_page + 1 ),
number_format_i18n( min( $pagenum * $per_page, $wp_query->post_count ) ),
number_format_i18n( $wp_query->post_count ),
2008-11-06 21:56:29 +00:00
$page_links
); echo $page_links_text; ?></div>
<?php endif; ?>
2008-06-15 00:45:01 +00:00
2008-10-24 18:25:46 +00:00
<div class="alignleft actions">
2008-08-20 04:06:36 +00:00
<select name="action">
2008-12-04 21:57:56 +00:00
<option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option>
2008-09-10 22:47:03 +00:00
<option value="edit"><?php _e('Edit'); ?></option>
2008-08-20 04:06:36 +00:00
<option value="delete"><?php _e('Delete'); ?></option>
</select>
2008-09-25 13:42:34 +00:00
<input type="submit" value="<?php _e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />
2008-02-13 23:54:11 +00:00
<?php wp_nonce_field('bulk-pages'); ?>
2008-02-12 05:51:53 +00:00
</div>
2008-03-14 23:58:31 +00:00
<br class="clear" />
2008-02-12 05:51:53 +00:00
</div>
2005-12-13 19:19:56 +00:00
2008-10-03 00:13:12 +00:00
<div class="clear"></div>
2007-05-01 01:19:19 +00:00
2008-11-17 18:01:00 +00:00
<table class="widefat page fixed" cellspacing="0">
2006-03-29 01:51:55 +00:00
<thead>
<tr>
2008-11-17 19:16:26 +00:00
<?php print_column_headers('edit-pages'); ?>
2006-03-29 01:51:55 +00:00
</tr>
</thead>
2008-09-29 09:26:21 +00:00
<tfoot>
<tr>
2008-11-17 19:16:26 +00:00
<?php print_column_headers('edit-pages', false); ?>
2008-09-29 09:26:21 +00:00
</tr>
</tfoot>
2008-02-27 00:46:27 +00:00
<tbody>
2008-06-15 00:45:01 +00:00
<?php page_rows($posts, $pagenum, $per_page); ?>
2006-03-29 01:51:55 +00:00
</tbody>
</table>
2008-09-29 09:26:21 +00:00
<div class="tablenav">
<?php
if ( $page_links )
2008-11-06 21:56:29 +00:00
echo "<div class='tablenav-pages'>$page_links_text</div>";
2008-09-29 09:26:21 +00:00
?>
2008-10-24 18:25:46 +00:00
<div class="alignleft actions">
2008-09-29 09:26:21 +00:00
<select name="action2">
2008-12-04 21:57:56 +00:00
<option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option>
2008-09-29 09:26:21 +00:00
<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" />
</div>
<br class="clear" />
</div>
2008-11-26 00:36:25 +00:00
<?php } else { ?>
<div class="clear"></div>
<p><?php _e('No pages found.') ?></p>
<?php
} // end if ($posts)
?>
2008-02-13 23:54:11 +00:00
</form>
2008-09-25 13:42:34 +00:00
<?php inline_edit_row( 'page' ) ?>
2005-08-31 02:39:17 +00:00
<div id="ajax-response"></div>
2008-02-13 07:32:50 +00:00
2008-02-27 23:57:00 +00:00
<?php
2008-02-28 06:50:25 +00:00
2008-03-11 20:26:10 +00:00
if ( 1 == count($posts) && is_singular() ) :
2008-02-27 23:57:00 +00:00
2008-04-14 16:13:25 +00: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 06:50:25 +00:00
if ( $comments ) :
2008-02-27 23:57:00 +00:00
// Make sure comments, post, and post_author are cached
update_comment_cache($comments);
$post = get_post($id);
$authordata = get_userdata($post->post_author);
?>
2008-02-28 06:50:25 +00:00
<br class="clear" />
2008-11-17 18:01:00 +00:00
<table class="widefat" cellspacing="0">
2008-10-30 15:50:21 +00:00
<thead>
<tr>
2009-03-02 19:20:19 +00:00
<th scope="col" class="column-comment">
<?php /* translators: column name */ echo _x('Comment', 'column name') ?>
</th>
2008-11-17 18:01:00 +00:00
<th scope="col" class="column-author"><?php _e('Author') ?></th>
<th scope="col" class="column-date"><?php _e('Submitted') ?></th>
2008-10-30 15:50:21 +00:00
</tr>
</thead>
<tbody id="the-comment-list" class="list:comment">
2008-02-27 23:57:00 +00:00
<?php
2008-02-28 06:50:25 +00:00
foreach ($comments as $comment)
2008-11-17 18:01:00 +00:00
_wp_comment_row( $comment->comment_ID, 'single', false, false );
2008-02-28 06:50:25 +00:00
?>
2008-10-30 15:50:21 +00:00
</tbody>
</table>
2008-02-28 06:50:25 +00:00
<?php
2008-08-24 06:56:22 +00:00
wp_comment_reply();
2008-02-28 06:50:25 +00:00
endif; // comments
endif; // posts;
2008-02-27 23:57:00 +00:00
?>
2005-08-08 03:28:37 +00:00
</div>
2004-08-10 05:58:19 +00:00
2009-01-12 13:43:17 +00:00
<?php
include('admin-footer.php');