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
if ( isset ( $_GET [ 'action' ]) && $_GET [ 'action' ] != - 1 ) {
switch ( $_GET [ 'action' ] ) {
case 'delete' :
if ( isset ( $_GET [ 'post' ]) && isset ( $_GET [ 'doaction' ]) ) {
check_admin_referer ( 'bulk-pages' );
foreach ( ( array ) $_GET [ 'post' ] as $post_id_del ) {
$post_del = & get_post ( $post_id_del );
if ( ! current_user_can ( 'delete_page' , $post_id_del ) )
wp_die ( __ ( 'You are not allowed to delete this page.' ) );
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-08-20 04:06:36 +00:00
}
2008-09-25 13:42:34 +00:00
break ;
case 'edit' :
if ( isset ( $_GET [ 'post' ]) ) {
check_admin_referer ( 'bulk-pages' );
$_GET [ 'post_status' ] = $_GET [ '_status' ];
if ( - 1 == $_GET [ 'post_author' ] )
unset ( $_GET [ 'post_author' ]);
$done = bulk_edit_posts ( $_GET );
}
break ;
2008-08-20 04:06:36 +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' );
$sendback = preg_replace ( '|[^a-z0-9-~+_.?#=&;,/:]|i' , '' , $sendback );
if ( isset ( $done ) ) {
$done [ 'upd' ] = count ( $done [ 'upd' ] );
$done [ 'skip' ] = count ( $done [ 'skip' ] );
$sendback = add_query_arg ( $done , $sendback );
unset ( $done );
}
wp_redirect ( $sendback );
exit ();
2008-02-15 22:29:18 +00:00
} elseif ( ! 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
}
2006-11-18 07:31:29 +00:00
$title = __ ( 'Pages' );
$parent_file = 'edit.php' ;
2008-02-13 23:54:11 +00:00
wp_enqueue_script ( 'admin-forms' );
2008-09-10 22:47:03 +00:00
wp_enqueue_script ( 'inline-edit' );
2008-09-11 05:36:34 +00:00
wp_enqueue_script ( 'pages' );
2007-05-28 18:34:06 +00:00
$post_stati = array ( // array( adj, noun )
2008-03-19 16:00:09 +00:00
'publish' => array ( __ ( 'Published' ), __ ( 'Published pages' ), __ngettext_noop ( 'Published (%s)' , 'Published (%s)' )),
'future' => array ( __ ( 'Scheduled' ), __ ( 'Scheduled pages' ), __ngettext_noop ( 'Scheduled (%s)' , 'Scheduled (%s)' )),
'pending' => array ( __ ( 'Pending Review' ), __ ( 'Pending pages' ), __ngettext_noop ( 'Pending Review (%s)' , 'Pending Review (%s)' )),
'draft' => array ( __ ( 'Draft' ), _c ( 'Drafts|manage posts header' ), __ngettext_noop ( 'Draft (%s)' , 'Drafts (%s)' )),
'private' => array ( __ ( 'Private' ), __ ( 'Private pages' ), __ngettext_noop ( 'Private (%s)' , 'Private (%s)' ))
2008-02-12 05:51:53 +00:00
);
2007-05-28 18:34:06 +00:00
2008-08-20 04:06:36 +00:00
$post_status_label = __ ( 'Pages' );
2007-05-28 21:55:12 +00:00
$post_status_q = '' ;
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 ];
$post_status_q = '&post_status=' . $_GET [ 'post_status' ];
2008-02-29 22:34:29 +00:00
$post_status_q .= '&perm=readable' ;
2007-05-28 18:34:06 +00:00
}
2008-03-11 20:26:10 +00:00
$query_str = "post_type=page&orderby=menu_order title&what_to_show=posts $post_status_q &posts_per_page=-1&posts_per_archive_page=-1&order=asc" ;
$query_str = apply_filters ( 'manage_pages_query' , $query_str );
wp ( $query_str );
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-08-30 07:16:16 +00:00
wp_enqueue_script ( 'jquery-table-hotkeys' );
}
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-09-28 04:11:27 +00:00
<div id="edit-settings">
<a href="#edit_settings" id="show-settings-link" class="hide-if-no-js show-settings"><?php _e('Page Options') ?></a>
<div id="edit-settings-wrap" class="hidden">
<a href="#edit_settings" id="hide-settings-link" class="show-settings"><?php _e('Hide Options') ?></a>
<h5><?php _e('Show on screen') ?></h5>
<form id="adv-settings" action="" method="get">
<div class="metabox-prefs">
<?php manage_columns_prefs('page') ?>
<?php wp_nonce_field( 'hiddencolumns', 'hiddencolumnsnonce', false ); ?>
<br class="clear" />
</div></form>
</div></div>
<?php if ( isset($_GET['upd']) && (int) $_GET['upd'] ) { ?>
2008-09-25 13:42:34 +00:00
<div id="message" class="updated fade"><p>
<?php printf( __ngettext( '%d page updated.', '%d pages updated.', $_GET['upd'] ), number_format_i18n( $_GET['upd'] ) );
unset($_GET['upd']);
if ( isset($_GET['skip']) && (int) $_GET['skip'] ) {
printf( __ngettext( ' %d page not updated. Somebody is editing it.', ' %d pages not updated. Somebody is editing them.', $_GET['skip'] ), number_format_i18n( $_GET['skip'] ) );
unset($_GET['skip']);
} ?>
</p></div>
<?php } ?>
2004-10-05 08:27:13 +00:00
<div class="wrap">
2008-09-11 05:36:34 +00:00
2007-05-28 18:34:06 +00:00
<h2><?php
// Use $_GET instead of is_ since they can override each other
$h2_search = isset($_GET['s']) && $_GET['s'] ? ' ' . sprintf(__('matching “%s”'), wp_specialchars( stripslashes( $_GET['s'] ) ) ) : '';
2007-05-29 04:28:10 +00:00
$h2_author = '';
if ( isset($_GET['author']) && $_GET['author'] ) {
$author_user = get_userdata( (int) $_GET['author'] );
$h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name ));
}
2008-08-20 04:06:36 +00:00
printf( _c( '%1$s%2$s%3$s (<a href="%4$s">Add New</a>)|You can reorder these: 1: Pages, 2: by {s}, 3: matching {s}' ), $post_status_label, $h2_author, $h2_search, 'page-new.php' );
2007-05-28 18:34:06 +00:00
?></h2>
2008-09-22 03:27:48 +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-03-02 20:17:30 +00:00
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-03-06 10:23:00 +00:00
$class = empty($_GET['post_status']) ? ' class="current"' : '';
$status_links[] = "<li><a href=\"edit-pages.php\"$class>".__('All Pages')."</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
2008-02-12 05:51:53 +00:00
$status_links[] = "<li><a href=\"edit-pages.php?post_status=$status\"$class>" .
2008-03-23 07:10:17 +00:00
sprintf(__ngettext($label[2][0], $label[2][1], $num_posts->$status), number_format_i18n( $num_posts->$status ) ) . '</a>';
2008-02-12 05:51:53 +00:00
}
echo implode(' |</li>', $status_links) . '</li>';
unset($status_links);
?>
</ul>
2007-05-28 18:34:06 +00:00
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-22 03:27:48 +00:00
<?php endif;
2008-02-26 20:53:07 +00:00
if ( isset($_GET['posted']) && $_GET['posted'] ) : $_GET['posted'] = (int) $_GET['posted']; ?>
2008-07-29 05:22:58 +00:00
<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>
2008-02-26 20:53:07 +00:00
<?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('posted'), $_SERVER['REQUEST_URI']);
endif;
?>
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;
2008-08-08 17:05:10 +00:00
if( ! isset( $per_page ) || $per_page < 0 )
2008-06-15 00:45:01 +00:00
$per_page = 20;
$num_pages = ceil(count($posts) / $per_page);
$page_links = paginate_links( array(
'base' => add_query_arg( 'pagenum', '%#%' ),
'format' => '',
'total' => $num_pages,
'current' => $pagenum
));
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
2008-03-14 23:58:31 +00:00
<div class="alignleft">
2008-08-20 04:06:36 +00:00
<select name="action">
2008-09-22 03:27:48 +00:00
<option value="-1" selected><?php _e('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-03-14 23:58:31 +00:00
<br class="clear" />
2007-05-01 01:19:19 +00:00
2004-10-05 08:27:13 +00:00
<?php
2005-12-13 19:19:56 +00:00
2007-05-28 21:55:12 +00:00
$all = !( $h2_search || $post_status_q );
2004-08-10 05:58:19 +00:00
2004-10-05 08:27:13 +00:00
if ($posts) {
?>
2008-09-21 19:45:45 +00:00
<table class="widefat page">
2006-03-29 01:51:55 +00:00
<thead>
<tr>
2008-09-18 05:41:45 +00:00
<?php print_column_headers('page'); ?>
2006-03-29 01:51:55 +00:00
</tr>
</thead>
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-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>
2004-08-10 05:58:19 +00:00
<?php
} else {
?>
2008-02-22 17:30:43 +00:00
</form>
2007-05-28 18:34:06 +00:00
<p><?php _e('No pages found.') ?></p>
2004-08-10 05:58:19 +00:00
<?php
} // end if ($posts)
2006-11-19 07:56:05 +00:00
?>
2005-08-08 03:28:37 +00:00
2008-02-13 07:32:50 +00:00
<div class="tablenav">
2008-06-15 00:45:01 +00:00
<?php
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
2008-03-14 23:58:31 +00:00
<br class="clear" />
2008-02-13 07:32:50 +00:00
</div>
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" />
<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">
2008-02-27 23:57:00 +00:00
<?php
2008-02-28 06:50:25 +00:00
foreach ($comments as $comment)
2008-02-28 22:12:04 +00:00
_wp_comment_row( $comment->comment_ID, 'detail', false, false );
2008-02-28 06:50:25 +00:00
?>
</tbody>
</table>
<?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
2008-08-24 06:56:22 +00:00
<?php include('admin-footer.php'); ?>