mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
166ccef6c3
git-svn-id: http://svn.automattic.com/wordpress/trunk@9414 1a063a9b-81f0-0310-95a4-ce76da25c4cd
305 lines
9.2 KiB
PHP
305 lines
9.2 KiB
PHP
<?php
|
|
/**
|
|
* Edit Pages Administration Panel.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
|
|
/** WordPress Administration Bootstrap */
|
|
require_once('admin.php');
|
|
|
|
// Handle bulk actions
|
|
if ( isset($_GET['action']) && ( -1 != $_GET['action'] || -1 != $_GET['action2'] ) ) {
|
|
$doaction = ( -1 != $_GET['action'] ) ? $_GET['action'] : $_GET['action2'];
|
|
|
|
switch ( $doaction ) {
|
|
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...') );
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case 'edit':
|
|
if ( isset($_GET['post']) ) {
|
|
check_admin_referer('bulk-pages');
|
|
|
|
if ( -1 == $_GET['_status'] ) {
|
|
$_GET['post_status'] = null;
|
|
unset($_GET['_status'], $_GET['post_status']);
|
|
} else {
|
|
$_GET['post_status'] = $_GET['_status'];
|
|
}
|
|
|
|
$done = bulk_edit_posts($_GET);
|
|
}
|
|
break;
|
|
}
|
|
$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['updated'] = count( $done['updated'] );
|
|
$done['skipped'] = count( $done['skipped'] );
|
|
$done['locked'] = count( $done['locked'] );
|
|
$sendback = add_query_arg( $done, $sendback );
|
|
}
|
|
wp_redirect($sendback);
|
|
exit();
|
|
} 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']) ) );
|
|
exit;
|
|
}
|
|
|
|
if ( empty($title) )
|
|
$title = __('Edit Pages');
|
|
$parent_file = 'edit.php';
|
|
wp_enqueue_script('admin-forms');
|
|
wp_enqueue_script('inline-edit-post');
|
|
wp_enqueue_script('pages');
|
|
|
|
$post_stati = array( // array( adj, noun )
|
|
'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)'))
|
|
);
|
|
|
|
$post_status_label = __('Pages');
|
|
$post_status_q = '';
|
|
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'];
|
|
$post_status_q .= '&perm=readable';
|
|
}
|
|
|
|
$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);
|
|
|
|
if ( is_singular() ) {
|
|
wp_enqueue_script( 'admin-comments' );
|
|
enqueue_comment_hotkeys_js();
|
|
}
|
|
|
|
require_once('admin-header.php'); ?>
|
|
|
|
<?php screen_options('page') ?>
|
|
|
|
<?php if ( isset($_GET['locked']) || isset($_GET['skipped']) || isset($_GET['updated']) ) { ?>
|
|
<div id="message" class="updated fade"><p>
|
|
<?php if ( (int) $_GET['updated'] ) {
|
|
printf( __ngettext( '%d page updated.', '%d pages updated.', $_GET['updated'] ), number_format_i18n( $_GET['updated'] ) );
|
|
unset($_GET['updated']);
|
|
}
|
|
|
|
if ( (int) $_GET['skipped'] ) {
|
|
printf( __ngettext( ' %d page not updated, invalid parent page specified.', ' %d pages not updated, invalid parent page specified.', $_GET['skipped'] ), number_format_i18n( $_GET['skipped'] ) );
|
|
unset($_GET['skipped']);
|
|
}
|
|
|
|
if ( (int) $_GET['locked'] ) {
|
|
printf( __ngettext( ' %d page not updated, somebody is editing it.', ' %d pages not updated, somebody is editing them.', $_GET['locked'] ), number_format_i18n( $_GET['skipped'] ) );
|
|
unset($_GET['locked']);
|
|
} ?>
|
|
</p></div>
|
|
<?php } ?>
|
|
|
|
<?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; ?>
|
|
|
|
<div class="wrap">
|
|
<h2><?php echo wp_specialchars( $title ); ?></h2>
|
|
|
|
<form id="posts-filter" action="" method="get">
|
|
<ul class="subsubsub">
|
|
<?php
|
|
|
|
$avail_post_stati = get_available_post_statuses('page');
|
|
if ( empty($locked_post_status) ) :
|
|
$status_links = array();
|
|
$num_posts = wp_count_posts('page', 'readable');
|
|
$class = empty($_GET['post_status']) ? ' class="current"' : '';
|
|
$status_links[] = "<li><a href=\"edit-pages.php\"$class>".__('All Pages')."</a>";
|
|
foreach ( $post_stati as $status => $label ) {
|
|
$class = '';
|
|
|
|
if ( !in_array($status, $avail_post_stati) )
|
|
continue;
|
|
|
|
if ( isset( $_GET['post_status'] ) && $status == $_GET['post_status'] )
|
|
$class = ' class="current"';
|
|
|
|
$status_links[] = "<li><a href=\"edit-pages.php?post_status=$status\"$class>" .
|
|
sprintf(__ngettext($label[2][0], $label[2][1], $num_posts->$status), number_format_i18n( $num_posts->$status ) ) . '</a>';
|
|
}
|
|
echo implode(' |</li>', $status_links) . '</li>';
|
|
unset($status_links);
|
|
endif;
|
|
?>
|
|
</ul>
|
|
|
|
<p class="search-box">
|
|
<label class="hidden" for="page-search-input"><?php _e( 'Search Pages' ); ?>:</label>
|
|
<input type="text" class="search-input" id="page-search-input" name="s" value="<?php _admin_search_query(); ?>" />
|
|
<input type="submit" value="<?php _e( 'Search Pages' ); ?>" class="button-primary" />
|
|
</p>
|
|
|
|
<?php if ( isset($_GET['post_status'] ) ) : ?>
|
|
<input type="hidden" name="post_status" value="<?php echo attribute_escape($_GET['post_status']) ?>" />
|
|
<?php endif; ?>
|
|
|
|
<div class="tablenav">
|
|
|
|
<?php
|
|
$pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0;
|
|
if ( empty($pagenum) )
|
|
$pagenum = 1;
|
|
if( ! isset( $per_page ) || $per_page < 0 )
|
|
$per_page = 20;
|
|
|
|
$num_pages = ceil(count($posts) / $per_page);
|
|
$page_links = paginate_links( array(
|
|
'base' => add_query_arg( 'pagenum', '%#%' ),
|
|
'format' => '',
|
|
'prev_text' => __('«'),
|
|
'next_text' => __('»'),
|
|
'total' => $num_pages,
|
|
'current' => $pagenum
|
|
));
|
|
|
|
if ( $page_links )
|
|
echo "<div class='tablenav-pages'>$page_links</div>";
|
|
?>
|
|
|
|
<div class="alignleft actions">
|
|
<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-pages'); ?>
|
|
</div>
|
|
|
|
<br class="clear" />
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php
|
|
|
|
$all = !( $h2_search || $post_status_q );
|
|
|
|
if ($posts) {
|
|
?>
|
|
<table class="widefat page">
|
|
<thead>
|
|
<tr>
|
|
<?php print_column_headers('page'); ?>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tfoot>
|
|
<tr>
|
|
<?php print_column_headers('page', false); ?>
|
|
</tr>
|
|
</tfoot>
|
|
|
|
<tbody>
|
|
<?php page_rows($posts, $pagenum, $per_page); ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="tablenav">
|
|
<?php
|
|
if ( $page_links )
|
|
echo "<div class='tablenav-pages'>$page_links</div>";
|
|
?>
|
|
|
|
<div class="alignleft actions">
|
|
<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" />
|
|
</div>
|
|
|
|
<br class="clear" />
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<?php inline_edit_row( 'page' ) ?>
|
|
|
|
<div id="ajax-response"></div>
|
|
|
|
<?php
|
|
} else {
|
|
?>
|
|
</form>
|
|
<p><?php _e('No pages found.') ?></p>
|
|
<?php
|
|
} // end if ($posts)
|
|
?>
|
|
|
|
|
|
<?php
|
|
|
|
if ( 1 == count($posts) && is_singular() ) :
|
|
|
|
$comments = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $wpdb->comments WHERE comment_post_ID = %d AND comment_approved != 'spam' ORDER BY comment_date", $id) );
|
|
if ( $comments ) :
|
|
// Make sure comments, post, and post_author are cached
|
|
update_comment_cache($comments);
|
|
$post = get_post($id);
|
|
$authordata = get_userdata($post->post_author);
|
|
?>
|
|
|
|
<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">
|
|
<?php
|
|
foreach ($comments as $comment)
|
|
_wp_comment_row( $comment->comment_ID, 'detail', false, false );
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php
|
|
wp_comment_reply();
|
|
endif; // comments
|
|
endif; // posts;
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?php include('admin-footer.php'); ?>
|