2006-10-25 18:55:05 -04:00
< ? php
2008-08-16 03:27:34 -04:00
/**
* Edit page administration panel .
*
* Manage edit page : post , edit , delete , etc .
*
* @ package WordPress
* @ subpackage Administration
*/
/** WordPress Administration Bootstrap */
2006-10-25 18:55:05 -04:00
require_once ( 'admin.php' );
2008-11-29 12:51:30 -05:00
$parent_file = 'edit-pages.php' ;
2006-10-25 18:55:05 -04:00
$submenu_file = 'edit-pages.php' ;
wp_reset_vars ( array ( 'action' ));
2008-08-16 03:27:34 -04:00
/**
* Redirect to previous page .
*
* @ param int $page_ID Page ID .
*/
2008-03-26 14:55:24 -04:00
function redirect_page ( $page_ID ) {
2008-11-15 13:10:35 -05:00
global $action ;
2008-03-26 14:55:24 -04:00
$referredby = '' ;
2008-04-21 13:54:56 -04:00
if ( ! empty ( $_POST [ 'referredby' ]) ) {
2008-03-26 14:55:24 -04:00
$referredby = preg_replace ( '|https?://[^/]+|i' , '' , $_POST [ 'referredby' ]);
2008-04-21 13:54:56 -04:00
$referredby = remove_query_arg ( '_wp_original_http_referer' , $referredby );
}
2008-03-26 14:55:24 -04: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 17:44:09 -04: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 00:09:43 -05:00
}
2008-11-10 13:54:18 -05:00
} elseif ( isset ( $_POST [ 'addmeta' ]) ) {
2008-03-26 14:55:24 -04:00
$location = add_query_arg ( 'message' , 2 , wp_get_referer () );
$location = explode ( '#' , $location );
$location = $location [ 0 ] . '#postcustom' ;
2008-11-10 13:54:18 -05:00
} elseif ( isset ( $_POST [ 'deletemeta' ]) ) {
2008-03-26 14:55:24 -04: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 17:44:09 -04:00
$location = add_query_arg ( 'message' , 1 , get_edit_post_link ( $page_ID , 'url' ) );
2008-03-26 14:55:24 -04:00
}
wp_redirect ( $location );
}
2008-10-31 18:47:07 -04:00
if ( isset ( $_POST [ 'deletepost' ]))
$action = " delete " ;
elseif ( isset ( $_POST [ 'wp-preview' ]) && 'dopreview' == $_POST [ 'wp-preview' ] )
$action = 'preview' ;
2006-10-25 18:55:05 -04:00
switch ( $action ) {
case 'post' :
check_admin_referer ( 'add-page' );
$page_ID = write_post ();
2008-03-26 14:55:24 -04:00
redirect_page ( $page_ID );
2006-10-25 18:55:05 -04:00
exit ();
break ;
case 'edit' :
2008-09-29 18:06:23 -04:00
$title = __ ( 'Edit Page' );
2006-10-25 18:55:05 -04:00
$editing = true ;
$page_ID = $post_ID = $p = ( int ) $_GET [ 'post' ];
$post = get_post_to_edit ( $page_ID );
2007-01-22 03:16:58 -05:00
2009-05-05 00:28:05 -04:00
if ( empty ( $post -> ID ) ) wp_die ( __ ( 'You attempted to edit a page that doesn’t exist. Perhaps it was deleted?' ) );
2009-07-30 09:39:34 -04: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-15 18:31:19 -04:00
2008-04-18 19:38:21 -04:00
if ( 'page' != $post -> post_type ) {
wp_redirect ( get_edit_post_link ( $post_ID , 'url' ) );
2007-01-22 03:16:58 -05:00
exit ();
}
2008-02-08 14:57:50 -05:00
wp_enqueue_script ( 'page' );
2008-02-18 12:11:12 -05:00
if ( user_can_richedit () )
wp_enqueue_script ( 'editor' );
2008-06-02 17:46:25 -04:00
add_thickbox ();
2008-01-25 18:11:54 -05:00
wp_enqueue_script ( 'media-upload' );
2008-04-29 15:17:23 -04:00
wp_enqueue_script ( 'word-count' );
2008-04-22 19:54:13 -04: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 11:11:07 -04:00
$message = sprintf ( __ ( 'Warning: %s is currently editing this page' ), esc_html ( $last_user_name ) );
2008-04-22 19:54:13 -04: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 04:51:36 -05:00
}
2008-01-04 03:46:33 -05:00
2006-10-25 18:55:05 -04: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 17:37:19 -05:00
$newmeta = wp_get_attachment_metadata ( $page_id , true );
2006-10-25 18:55:05 -04:00
$newmeta [ 'thumb' ] = $_POST [ 'thumb' ];
2006-12-05 17:37:19 -05:00
wp_update_attachment_metadata ( $newmeta );
2006-10-25 18:55:05 -04:00
case 'editpost' :
$page_ID = ( int ) $_POST [ 'post_ID' ];
check_admin_referer ( 'update-page_' . $page_ID );
$page_ID = edit_post ();
2008-03-26 14:55:24 -04:00
redirect_page ( $page_ID );
2006-10-25 18:55:05 -04:00
exit ();
break ;
2009-07-30 09:39:34 -04: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-25 18:55:05 -04: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-03 19:32:58 -04:00
if ( ! wp_delete_post ( $page_id ) )
2006-10-25 18:55:05 -04:00
wp_die ( __ ( 'Error in deleting...' ) );
}
$sendback = wp_get_referer ();
2008-12-01 13:02:16 -05:00
if ( strpos ( $sendback , 'page.php' ) !== false ) $sendback = admin_url ( 'edit-pages.php?deleted=1' );
2008-05-27 13:46:01 -04:00
elseif ( strpos ( $sendback , 'attachments.php' ) !== false ) $sendback = admin_url ( 'attachments.php' );
2008-12-01 13:02:16 -05:00
else $sendback = add_query_arg ( 'deleted' , 1 , $sendback );
2006-10-25 18:55:05 -04:00
wp_redirect ( $sendback );
exit ();
break ;
2008-10-31 18:47:07 -04:00
case 'preview' :
check_admin_referer ( 'autosave' , 'autosavenonce' );
2008-11-04 08:00:12 -05:00
$url = post_preview ();
2008-10-31 18:47:07 -04:00
wp_redirect ( $url );
exit ();
break ;
2006-10-25 18:55:05 -04:00
default :
wp_redirect ( 'edit-pages.php' );
exit ();
break ;
} // end switch
include ( 'admin-footer.php' );
?>