2006-10-26 00:55:05 +02:00
< ? php
2008-08-16 09:27:34 +02:00
/**
* Edit page administration panel .
*
* Manage edit page : post , edit , delete , etc .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2006-10-26 00:55:05 +02:00
require_once ( 'admin.php' );
2008-11-29 18:51:30 +01:00
$parent_file = 'edit-pages.php' ;
2006-10-26 00:55:05 +02:00
$submenu_file = 'edit-pages.php' ;
wp_reset_vars ( array ( 'action' ));
2008-08-16 09:27:34 +02:00
/**
* Redirect to previous page .
*
* @ param int $page_ID Page ID .
*/
2008-03-26 19:55:24 +01:00
function redirect_page ( $page_ID ) {
2008-11-15 19:10:35 +01:00
global $action ;
2008-03-26 19:55:24 +01:00
$referredby = '' ;
2008-04-21 19:54:56 +02:00
if ( ! empty ( $_POST [ 'referredby' ]) ) {
2008-03-26 19:55:24 +01:00
$referredby = preg_replace ( '|https?://[^/]+|i' , '' , $_POST [ 'referredby' ]);
2008-04-21 19:54:56 +02:00
$referredby = remove_query_arg ( '_wp_original_http_referer' , $referredby );
}
2008-03-26 19:55:24 +01:00
$referer = preg_replace ( '|https?://[^/]+|i' , '' , wp_get_referer ());
if ( 'post' == $_POST [ 'originalaction' ] && ! empty ( $_POST [ 'mode' ]) && 'bookmarklet' == $_POST [ 'mode' ] ) {
$location = $_POST [ 'referredby' ];
} elseif ( 'post' == $_POST [ 'originalaction' ] && ! empty ( $_POST [ 'mode' ]) && 'sidebar' == $_POST [ 'mode' ] ) {
$location = 'sidebar.php?a=b' ;
2009-05-02 23:44:09 +02:00
} elseif ( ( isset ( $_POST [ 'save' ]) || isset ( $_POST [ 'publish' ]) ) ) {
if ( isset ( $_POST [ 'publish' ] ) ) {
if ( 'pending' == get_post_status ( $page_ID ) )
$location = add_query_arg ( 'message' , 6 , get_edit_post_link ( $page_ID , 'url' ) );
else
$location = add_query_arg ( 'message' , 5 , get_edit_post_link ( $page_ID , 'url' ) );
} else {
$location = add_query_arg ( 'message' , 1 , get_edit_post_link ( $page_ID , 'url' ) );
2008-12-01 06:09:43 +01:00
}
2008-11-10 19:54:18 +01:00
} elseif ( isset ( $_POST [ 'addmeta' ]) ) {
2008-03-26 19:55:24 +01:00
$location = add_query_arg ( 'message' , 2 , wp_get_referer () );
$location = explode ( '#' , $location );
$location = $location [ 0 ] . '#postcustom' ;
2008-11-10 19:54:18 +01:00
} elseif ( isset ( $_POST [ 'deletemeta' ]) ) {
2008-03-26 19:55:24 +01:00
$location = add_query_arg ( 'message' , 3 , wp_get_referer () );
$location = explode ( '#' , $location );
$location = $location [ 0 ] . '#postcustom' ;
} elseif ( $action == 'editattachment' ) {
$location = 'attachments.php' ;
} else {
2009-05-02 23:44:09 +02:00
$location = add_query_arg ( 'message' , 1 , get_edit_post_link ( $page_ID , 'url' ) );
2008-03-26 19:55:24 +01:00
}
wp_redirect ( $location );
}
2008-10-31 23:47:07 +01:00
if ( isset ( $_POST [ 'deletepost' ]))
$action = " delete " ;
elseif ( isset ( $_POST [ 'wp-preview' ]) && 'dopreview' == $_POST [ 'wp-preview' ] )
$action = 'preview' ;
2006-10-26 00:55:05 +02:00
switch ( $action ) {
case 'post' :
check_admin_referer ( 'add-page' );
$page_ID = write_post ();
2008-03-26 19:55:24 +01:00
redirect_page ( $page_ID );
2006-10-26 00:55:05 +02:00
exit ();
break ;
case 'edit' :
2008-09-30 00:06:23 +02:00
$title = __ ( 'Edit Page' );
2006-10-26 00:55:05 +02:00
$editing = true ;
$page_ID = $post_ID = $p = ( int ) $_GET [ 'post' ];
$post = get_post_to_edit ( $page_ID );
2007-01-22 09:16:58 +01:00
2009-05-05 06:28:05 +02:00
if ( empty ( $post -> ID ) ) wp_die ( __ ( 'You attempted to edit a page that doesn’t exist. Perhaps it was deleted?' ) );
2009-07-30 15:39:34 +02:00
if ( $post -> post_status == 'trash' ) wp_die ( __ ( 'You can’t edit this page because it is in the Trash. Please move it out of the Trash and try again.' ) );
2007-08-16 00:31:19 +02:00
2008-04-19 01:38:21 +02:00
if ( 'page' != $post -> post_type ) {
wp_redirect ( get_edit_post_link ( $post_ID , 'url' ) );
2007-01-22 09:16:58 +01:00
exit ();
}
2008-02-08 20:57:50 +01:00
wp_enqueue_script ( 'page' );
2008-02-18 18:11:12 +01:00
if ( user_can_richedit () )
wp_enqueue_script ( 'editor' );
2008-06-02 23:46:25 +02:00
add_thickbox ();
2008-01-26 00:11:54 +01:00
wp_enqueue_script ( 'media-upload' );
2008-04-29 21:17:23 +02:00
wp_enqueue_script ( 'word-count' );
2008-04-23 01:54:13 +02:00
if ( current_user_can ( 'edit_page' , $page_ID ) ) {
if ( $last = wp_check_post_lock ( $post -> ID ) ) {
$last_user = get_userdata ( $last );
$last_user_name = $last_user ? $last_user -> display_name : __ ( 'Somebody' );
2009-05-18 17:11:07 +02:00
$message = sprintf ( __ ( 'Warning: %s is currently editing this page' ), esc_html ( $last_user_name ) );
2008-04-23 01:54:13 +02:00
$message = str_replace ( " ' " , " \ ' " , " <div class='error'><p> $message </p></div> " );
add_action ( 'admin_notices' , create_function ( '' , " echo ' $message '; " ) );
} else {
wp_set_post_lock ( $post -> ID );
wp_enqueue_script ( 'autosave' );
}
2008-02-29 10:51:36 +01:00
}
2008-01-04 09:46:33 +01:00
2006-10-26 00:55:05 +02:00
if ( ! current_user_can ( 'edit_page' , $page_ID ) )
die ( __ ( 'You are not allowed to edit this page.' ) );
include ( 'edit-page-form.php' );
break ;
case 'editattachment' :
$page_id = $post_ID = ( int ) $_POST [ 'post_ID' ];
check_admin_referer ( 'update-attachment_' . $page_id );
// Don't let these be changed
unset ( $_POST [ 'guid' ]);
$_POST [ 'post_type' ] = 'attachment' ;
// Update the thumbnail filename
2006-12-05 23:37:19 +01:00
$newmeta = wp_get_attachment_metadata ( $page_id , true );
2006-10-26 00:55:05 +02:00
$newmeta [ 'thumb' ] = $_POST [ 'thumb' ];
2006-12-05 23:37:19 +01:00
wp_update_attachment_metadata ( $newmeta );
2006-10-26 00:55:05 +02:00
case 'editpost' :
$page_ID = ( int ) $_POST [ 'post_ID' ];
check_admin_referer ( 'update-page_' . $page_ID );
$page_ID = edit_post ();
2008-03-26 19:55:24 +01:00
redirect_page ( $page_ID );
2006-10-26 00:55:05 +02:00
exit ();
break ;
2009-07-30 15:39:34 +02:00
case 'trash' :
$post_id = ( isset ( $_GET [ 'post' ])) ? intval ( $_GET [ 'post' ]) : intval ( $_POST [ 'post_ID' ]);
check_admin_referer ( 'trash-page_' . $post_id );
$post = & get_post ( $post_id );
if ( ! current_user_can ( 'delete_page' , $page_id ) )
wp_die ( __ ( 'You are not allowed to move this page to the trash.' ) );
if ( ! wp_trash_post ( $post_id ) )
wp_die ( __ ( 'Error in removing from trash...' ) );
$sendback = wp_get_referer ();
if ( strpos ( $sendback , 'page.php' ) !== false ) $sendback = admin_url ( 'edit-pages.php?trashed=1' );
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
else $sendback = add_query_arg ( 'trashed' , 1 , $sendback );
wp_redirect ( $sendback );
exit ();
break ;
case 'untrash' :
$post_id = ( isset ( $_GET [ 'post' ])) ? intval ( $_GET [ 'post' ]) : intval ( $_POST [ 'post_ID' ]);
check_admin_referer ( 'untrash-page_' . $post_id );
$post = & get_post ( $post_id );
if ( ! current_user_can ( 'delete_page' , $page_id ) )
wp_die ( __ ( 'You are not allowed to remove this page form the trash.' ) );
if ( ! wp_untrash_post ( $post_id ) )
wp_die ( __ ( 'Error in removing from trash...' ) );
$sendback = wp_get_referer ();
if ( strpos ( $sendback , 'page.php' ) !== false ) $sendback = admin_url ( 'edit-pages.php?untrashed=1' );
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
else $sendback = add_query_arg ( 'untrashed' , 1 , $sendback );
wp_redirect ( $sendback );
exit ();
break ;
2006-10-26 00:55:05 +02:00
case 'delete' :
$page_id = ( isset ( $_GET [ 'post' ])) ? intval ( $_GET [ 'post' ]) : intval ( $_POST [ 'post_ID' ]);
check_admin_referer ( 'delete-page_' . $page_id );
$page = & get_post ( $page_id );
if ( ! current_user_can ( 'delete_page' , $page_id ) )
wp_die ( __ ( 'You are not allowed to delete this page.' ) );
if ( $page -> post_type == 'attachment' ) {
if ( ! wp_delete_attachment ( $page_id ) )
wp_die ( __ ( 'Error in deleting...' ) );
} else {
2007-09-04 01:32:58 +02:00
if ( ! wp_delete_post ( $page_id ) )
2006-10-26 00:55:05 +02:00
wp_die ( __ ( 'Error in deleting...' ) );
}
$sendback = wp_get_referer ();
2008-12-01 19:02:16 +01:00
if ( strpos ( $sendback , 'page.php' ) !== false ) $sendback = admin_url ( 'edit-pages.php?deleted=1' );
2008-05-27 19:46:01 +02:00
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
2008-12-01 19:02:16 +01:00
else $sendback = add_query_arg ( 'deleted' , 1 , $sendback );
2006-10-26 00:55:05 +02:00
wp_redirect ( $sendback );
exit ();
break ;
2008-10-31 23:47:07 +01:00
case 'preview' :
check_admin_referer ( 'autosave' , 'autosavenonce' );
2008-11-04 14:00:12 +01:00
$url = post_preview ();
2008-10-31 23:47:07 +01:00
wp_redirect ( $url );
exit ();
break ;
2006-10-26 00:55:05 +02:00
default :
wp_redirect ( 'edit-pages.php' );
exit ();
break ;
} // end switch
include ( 'admin-footer.php' );
?>