2004-08-10 07:58:19 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Edit Pages Administration Panel .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2004-10-19 05:03:06 +02:00
require_once ( 'admin.php' );
2008-02-14 00:54:11 +01:00
// Handle bulk deletes
2008-08-20 06:06:36 +02:00
if ( isset ( $_GET [ 'action' ]) && isset ( $_GET [ 'delete' ]) ) {
2008-02-14 00:54:11 +01:00
check_admin_referer ( 'bulk-pages' );
2008-08-20 06:06:36 +02:00
if ( $_GET [ 'action' ] == 'delete' ) {
foreach ( ( array ) $_GET [ 'delete' ] 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-02-14 00:54:11 +01:00
}
2008-08-20 06:06:36 +02: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 );
2008-02-14 00:54:11 +01:00
2008-08-20 06:06:36 +02:00
wp_redirect ( $sendback );
exit ();
}
2008-02-15 23:29:18 +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-14 00:54:11 +01:00
}
2006-11-18 08:31:29 +01:00
$title = __ ( 'Pages' );
$parent_file = 'edit.php' ;
2008-02-14 00:54:11 +01:00
wp_enqueue_script ( 'admin-forms' );
2007-05-28 20:34:06 +02:00
$post_stati = array ( // array( adj, noun )
2008-03-19 17:00:09 +01: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 06:51:53 +01:00
);
2007-05-28 20:34:06 +02:00
2008-08-20 06:06:36 +02:00
$post_status_label = __ ( 'Pages' );
2007-05-28 23:55:12 +02:00
$post_status_q = '' ;
2007-05-28 20:34:06 +02: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 23:34:29 +01:00
$post_status_q .= '&perm=readable' ;
2007-05-28 20:34:06 +02:00
}
2008-03-11 21:26:10 +01: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 );
if ( is_singular () )
wp_enqueue_script ( 'admin-comments' );
require_once ( 'admin-header.php' );
2004-08-10 07:58:19 +02:00
?>
2004-10-05 10:27:13 +02:00
< div class = " wrap " >
2008-02-12 06:51:53 +01:00
< form id = " posts-filter " action = " " method = " get " >
2007-05-28 20:34:06 +02: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 06:28:10 +02: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 06:06:36 +02: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 20:34:06 +02:00
?> </h2>
2008-02-12 06:51:53 +01:00
< ul class = " subsubsub " >
< ? php
$avail_post_stati = get_available_post_statuses ( 'page' );
2008-03-02 21:17:30 +01:00
2008-02-12 06:51:53 +01:00
$status_links = array ();
2008-02-29 23:34:29 +01:00
$num_posts = wp_count_posts ( 'page' , 'readable' );
2008-03-06 11:23:00 +01:00
$class = empty ( $_GET [ 'post_status' ]) ? ' class="current"' : '' ;
$status_links [] = " <li><a href= \" edit-pages.php \" $class > " . __ ( 'All Pages' ) . " </a> " ;
2008-02-12 06:51:53 +01:00
foreach ( $post_stati as $status => $label ) {
$class = '' ;
2004-08-10 07:58:19 +02:00
2008-02-12 06:51:53 +01:00
if ( ! in_array ( $status , $avail_post_stati ) )
continue ;
2008-03-02 21:17:30 +01:00
2008-08-08 19:05:10 +02:00
if ( isset ( $_GET [ 'post_status' ] ) && $status == $_GET [ 'post_status' ] )
2008-02-12 06:51:53 +01:00
$class = ' class="current"' ;
2007-06-14 04:25:30 +02:00
2008-02-12 06:51:53 +01:00
$status_links [] = " <li><a href= \" edit-pages.php?post_status= $status\ " $class > " .
2008-03-23 08:10:17 +01:00
sprintf ( __ngettext ( $label [ 2 ][ 0 ], $label [ 2 ][ 1 ], $num_posts -> $status ), number_format_i18n ( $num_posts -> $status ) ) . '</a>' ;
2008-02-12 06:51:53 +01:00
}
echo implode ( ' |</li>' , $status_links ) . '</li>' ;
unset ( $status_links );
?>
</ ul >
2007-05-28 20:34:06 +02:00
2008-02-29 23:38:20 +01:00
< ? php if ( isset ( $_GET [ 'post_status' ] ) ) : ?>
< input type = " hidden " name = " post_status " value = " <?php echo attribute_escape( $_GET['post_status'] ) ?> " />
2008-02-26 21:53:07 +01:00
< ? php
2008-02-29 23:38:20 +01:00
endif ;
2008-02-26 21:53:07 +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 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 21:53:07 +01:00
< ? php $_SERVER [ 'REQUEST_URI' ] = remove_query_arg ( array ( 'posted' ), $_SERVER [ 'REQUEST_URI' ]);
endif ;
?>
2008-02-12 06:51:53 +01:00
< p id = " post-search " >
2008-05-04 12:37:06 +02:00
< label class = " hidden " for = " post-search-input " >< ? php _e ( 'Search Pages' ); ?> :</label>
2008-02-12 09:01:32 +01:00
< input type = " text " id = " post-search-input " name = " s " value = " <?php echo attribute_escape(stripslashes( $_GET['s'] )); ?> " />
2008-02-19 21:33:59 +01:00
< input type = " submit " value = " <?php _e( 'Search Pages' ); ?> " class = " button " />
2008-02-12 06:51:53 +01:00
</ p >
2007-05-29 06:28:10 +02:00
2008-02-12 06:51:53 +01:00
< div class = " tablenav " >
2007-05-29 06:28:10 +02:00
2008-06-15 02:45:01 +02:00
< ? php
2008-08-08 19:05:10 +02:00
$pagenum = isset ( $_GET [ 'pagenum' ] ) ? absint ( $_GET [ 'pagenum' ] ) : 0 ;
2008-06-15 02:45:01 +02:00
if ( empty ( $pagenum ) )
$pagenum = 1 ;
2008-08-08 19:05:10 +02:00
if ( ! isset ( $per_page ) || $per_page < 0 )
2008-06-15 02:45:01 +02: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-15 00:58:31 +01:00
< div class = " alignleft " >
2008-08-20 06:06:36 +02:00
< select name = " action " >
< option value = " " selected >< ? php _e ( 'Actions' ); ?> </option>
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction " class = " button-secondary action " />
2008-02-14 00:54:11 +01:00
< ? php wp_nonce_field ( 'bulk-pages' ); ?>
2008-02-12 06:51:53 +01:00
</ div >
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2008-02-12 06:51:53 +01:00
</ div >
2005-12-13 20:19:56 +01:00
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2007-05-01 03:19:19 +02:00
2004-10-05 10:27:13 +02:00
< ? php
2005-12-13 20:19:56 +01:00
2007-05-28 23:55:12 +02:00
$all = ! ( $h2_search || $post_status_q );
2004-08-10 07:58:19 +02:00
2004-10-05 10:27:13 +02:00
if ( $posts ) {
?>
2007-09-04 01:32:58 +02:00
< table class = " widefat " >
2006-03-29 03:51:55 +02:00
< thead >
< tr >
2008-02-12 06:51:53 +01:00
< ? php $posts_columns = wp_manage_pages_columns (); ?>
2008-03-15 07:14:03 +01:00
< ? php foreach ( $posts_columns as $post_column_key => $column_display_name ) {
if ( 'cb' === $post_column_key )
$class = ' class="check-column"' ;
elseif ( 'comments' === $post_column_key )
$class = ' class="num"' ;
else
$class = '' ;
?>
< th scope = " col " < ? php echo $class ; ?> ><?php echo $column_display_name; ?></th>
2008-02-12 06:51:53 +01:00
< ? php } ?>
2006-03-29 03:51:55 +02:00
</ tr >
</ thead >
2008-02-27 01:46:27 +01:00
< tbody >
2008-06-15 02:45:01 +02:00
< ? php page_rows ( $posts , $pagenum , $per_page ); ?>
2006-03-29 03:51:55 +02:00
</ tbody >
</ table >
2005-08-31 04:39:17 +02:00
2008-02-14 00:54:11 +01:00
</ form >
2005-08-31 04:39:17 +02:00
< div id = " ajax-response " ></ div >
2004-08-10 07:58:19 +02:00
< ? php
} else {
?>
2008-02-22 18:30:43 +01:00
</ form >
2007-05-28 20:34:06 +02:00
< p >< ? php _e ( 'No pages found.' ) ?> </p>
2004-08-10 07:58:19 +02:00
< ? php
} // end if ($posts)
2006-11-19 08:56:05 +01:00
?>
2005-08-08 05:28:37 +02:00
2008-02-13 08:32:50 +01:00
< div class = " tablenav " >
2008-06-15 02:45:01 +02:00
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-03-15 00:58:31 +01:00
< br class = " clear " />
2008-02-13 08:32:50 +01:00
</ div >
2008-02-28 00:57:00 +01:00
< ? php
2008-02-28 07:50:25 +01:00
2008-03-11 21:26:10 +01:00
if ( 1 == count ( $posts ) && is_singular () ) :
2008-02-28 00:57:00 +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 ) :
2008-02-28 00:57:00 +01: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 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 " >
2008-02-28 00:57:00 +01: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 );
2008-02-28 07:50:25 +01:00
?>
</ tbody >
</ table >
< ? php
endif ; // comments
endif ; // posts;
2008-02-28 00:57:00 +01:00
?>
2005-08-08 05:28:37 +02:00
</ div >
2004-08-10 07:58:19 +02:00
2006-11-19 08:56:05 +01:00
< ? php include ( 'admin-footer.php' ); ?>