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
2008-09-25 15:42:34 +02:00
// Handle bulk actions
2008-09-29 11:26:21 +02:00
if ( isset ( $_GET [ 'action' ]) && ( - 1 != $_GET [ 'action' ] || - 1 != $_GET [ 'action2' ] ) ) {
$doaction = ( - 1 != $_GET [ 'action' ] ) ? $_GET [ 'action' ] : $_GET [ 'action2' ];
switch ( $doaction ) {
2008-09-25 15:42:34 +02:00
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 );
2008-09-29 11:26:21 +02:00
2008-09-25 15:42:34 +02:00
if ( ! current_user_can ( 'delete_page' , $post_id_del ) )
wp_die ( __ ( 'You are not allowed to delete this page.' ) );
2008-09-29 11:26:21 +02:00
2008-09-25 15:42:34 +02: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-08-20 06:06:36 +02:00
}
2008-09-25 15:42:34 +02:00
break ;
case 'edit' :
if ( isset ( $_GET [ 'post' ]) ) {
check_admin_referer ( 'bulk-pages' );
2008-09-29 11:26:21 +02:00
2008-09-30 12:30:56 +02:00
if ( - 1 == $_GET [ '_status' ] ) {
$_GET [ 'post_status' ] = null ;
unset ( $_GET [ '_status' ], $_GET [ 'post_status' ]);
} else {
$_GET [ 'post_status' ] = $_GET [ '_status' ];
}
2008-09-29 11:26:21 +02:00
2008-09-25 15:42:34 +02:00
$done = bulk_edit_posts ( $_GET );
}
break ;
2008-08-20 06:06:36 +02:00
}
2008-09-25 15:42:34 +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 );
if ( isset ( $done ) ) {
2008-09-30 12:30:56 +02:00
$done [ 'updated' ] = count ( $done [ 'updated' ] );
$done [ 'skipped' ] = count ( $done [ 'skipped' ] );
$done [ 'locked' ] = count ( $done [ 'locked' ] );
2008-09-25 15:42:34 +02:00
$sendback = add_query_arg ( $done , $sendback );
}
wp_redirect ( $sendback );
exit ();
2008-09-29 11:26:21 +02: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 21:17:30 +01:00
exit ;
2008-02-14 00:54:11 +01:00
}
2008-09-30 19:51:50 +02:00
if ( empty ( $title ) )
2008-10-17 22:02:03 +02:00
$title = __ ( 'Edit Pages' );
2006-11-18 08:31:29 +01:00
$parent_file = 'edit.php' ;
2008-02-14 00:54:11 +01:00
wp_enqueue_script ( 'admin-forms' );
2008-10-05 06:43:52 +02:00
wp_enqueue_script ( 'inline-edit-post' );
2008-09-11 07:36:34 +02:00
wp_enqueue_script ( 'pages' );
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 );
2008-08-30 09:16:16 +02:00
if ( is_singular () ) {
2008-03-11 21:26:10 +01:00
wp_enqueue_script ( 'admin-comments' );
2008-10-17 00:23:32 +02:00
enqueue_comment_hotkeys_js ();
2008-08-30 09:16:16 +02:00
}
2008-08-24 08:56:22 +02:00
2008-09-28 06:11:27 +02:00
require_once ( 'admin-header.php' ); ?>
2008-03-11 21:26:10 +01:00
2008-10-24 12:29:07 +02:00
< div id = " screen-options-wrap " class = " hidden " >
2008-09-28 06:11:27 +02:00
< 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 >
2008-10-02 03:32:27 +02:00
</ div >
2008-09-28 06:11:27 +02:00
2008-09-30 12:30:56 +02:00
< ? php if ( isset ( $_GET [ 'locked' ]) || isset ( $_GET [ 'skipped' ]) || isset ( $_GET [ 'updated' ]) ) { ?>
2008-09-25 15:42:34 +02:00
< div id = " message " class = " updated fade " >< p >
2008-09-30 12:30:56 +02:00
< ? 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' ]);
2008-09-29 11:26:21 +02:00
}
2008-09-30 12:30:56 +02:00
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' ]);
2008-09-29 11:26:21 +02:00
} ?>
2008-09-25 15:42:34 +02:00
</ p ></ div >
< ? php } ?>
2008-09-29 11:26:21 +02: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 07:36:34 +02:00
2008-10-03 02:13:12 +02:00
< div class = " wrap " >
2008-10-17 22:06:22 +02:00
< h2 >< ? php echo wp_specialchars ( $title ); ?> </h2>
2008-10-17 22:02:03 +02:00
2008-02-12 06:51:53 +01:00
< ul class = " subsubsub " >
< ? php
$avail_post_stati = get_available_post_statuses ( 'page' );
2008-09-30 19:51:50 +02:00
if ( empty ( $locked_post_status ) ) :
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 );
2008-09-30 19:51:50 +02:00
endif ;
2008-02-12 06:51:53 +01:00
?>
</ ul >
2007-05-28 20:34:06 +02:00
2008-10-11 02:12:37 +02:00
< form class = " search-form " action = " " method = " get " >
2008-10-03 02:13:12 +02:00
< p class = " search-box " >
2008-10-02 20:03:45 +02:00
< label class = " hidden " for = " post-search-input " >< ? php _e ( 'Search Pages' ); ?> :</label>
2008-10-03 05:06:43 +02:00
< input type = " text " class = " search-input " id = " post-search-input " name = " s " value = " <?php _admin_search_query(); ?> " />
2008-10-24 20:25:46 +02:00
< input type = " submit " value = " <?php _e( 'Search Pages' ); ?> " class = " button-primary " />
2008-10-02 20:03:45 +02:00
</ p >
2008-10-03 02:13:12 +02:00
</ form >
< form id = " posts-filter " action = " " method = " get " >
2008-10-02 20:03:45 +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-09-29 11:26:21 +02:00
< ? php endif ; ?>
2008-02-26 21:53:07 +01: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' => '' ,
2008-10-24 20:25:46 +02:00
'prev_text' => __ ( '«' ),
'next_text' => __ ( '»' ),
2008-06-15 02:45:01 +02:00
'total' => $num_pages ,
'current' => $pagenum
));
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-10-24 20:25:46 +02:00
< div class = " alignleft actions " >
2008-08-20 06:06:36 +02:00
< select name = " action " >
2008-09-29 11:26:21 +02:00
< option value = " -1 " selected = " selected " >< ? php _e ( 'Actions' ); ?> </option>
2008-09-11 00:47:03 +02:00
< option value = " edit " >< ? php _e ( 'Edit' ); ?> </option>
2008-08-20 06:06:36 +02:00
< option value = " delete " >< ? php _e ( 'Delete' ); ?> </option>
</ select >
2008-09-25 15:42:34 +02:00
< input type = " submit " value = " <?php _e('Apply'); ?> " name = " doaction " id = " 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-10-03 02:13:12 +02:00
< div class = " clear " ></ div >
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 ) {
?>
2008-09-21 21:45:45 +02:00
< table class = " widefat page " >
2006-03-29 03:51:55 +02:00
< thead >
< tr >
2008-09-18 07:41:45 +02:00
< ? php print_column_headers ( 'page' ); ?>
2006-03-29 03:51:55 +02:00
</ tr >
</ thead >
2008-09-29 11:26:21 +02:00
< tfoot >
< tr >
< ? php print_column_headers ( 'page' , false ); ?>
</ tr >
</ tfoot >
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 >
2008-09-29 11:26:21 +02:00
< div class = " tablenav " >
< ? php
if ( $page_links )
echo " <div class='tablenav-pages'> $page_links </div> " ;
?>
2008-10-24 20:25:46 +02:00
< div class = " alignleft actions " >
2008-09-29 11:26:21 +02:00
< 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 >
2008-02-14 00:54:11 +01:00
</ form >
2008-09-25 15:42:34 +02:00
< ? php inline_edit_row ( 'page' ) ?>
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
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
2008-08-24 08:56:22 +02:00
wp_comment_reply ();
2008-02-28 07:50:25 +01:00
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
2008-08-24 08:56:22 +02:00
< ? php include ( 'admin-footer.php' ); ?>