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());
|
|
|
|
|
2009-10-14 07:53:49 +02:00
|
|
|
if ( 'post' == $_POST['originalaction'] && !empty($_POST['mode']) && 'sidebar' == $_POST['mode'] ) {
|
2008-03-26 19:55:24 +01:00
|
|
|
$location = 'sidebar.php?a=b';
|
2009-10-11 02:37:26 +02:00
|
|
|
} elseif ( isset($_POST['save']) || isset($_POST['publish']) ) {
|
|
|
|
$status = get_post_status( $page_ID );
|
|
|
|
|
2009-05-02 23:44:09 +02:00
|
|
|
if ( isset( $_POST['publish'] ) ) {
|
2009-10-11 02:37:26 +02:00
|
|
|
switch ( $status ) {
|
2009-09-01 23:15:20 +02:00
|
|
|
case 'pending':
|
2009-10-11 02:37:26 +02:00
|
|
|
$message = 6;
|
2009-09-01 23:15:20 +02:00
|
|
|
break;
|
|
|
|
case 'future':
|
2009-10-11 02:37:26 +02:00
|
|
|
$message = 7;
|
2009-09-01 23:15:20 +02:00
|
|
|
break;
|
|
|
|
default:
|
2009-10-11 02:37:26 +02:00
|
|
|
$message = 4;
|
2009-09-01 23:15:20 +02:00
|
|
|
}
|
2009-05-02 23:44:09 +02:00
|
|
|
} else {
|
2009-10-11 02:37:26 +02:00
|
|
|
$message = 'draft' == $status ? 8 : 1;
|
2008-12-01 06:09:43 +01:00
|
|
|
}
|
2009-10-11 02:37:26 +02:00
|
|
|
|
|
|
|
$location = add_query_arg( 'message', $message, get_edit_post_link( $page_ID, 'url' ) );
|
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';
|
|
|
|
} 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
|
|
|
}
|
|
|
|
|
2009-11-22 23:30:27 +01:00
|
|
|
wp_redirect( apply_filters( 'redirect_page_location', $location, $page_ID ) );
|
2008-03-26 19:55:24 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
$sendback = wp_get_referer();
|
|
|
|
if ( strpos($sendback, 'page.php') !== false || strpos($sendback, 'page-new.php') !== false )
|
|
|
|
$sendback = admin_url('edit-pages.php');
|
|
|
|
else
|
|
|
|
$sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), $sendback );
|
|
|
|
|
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-08-12 12:57:15 +02:00
|
|
|
if ( empty($post->ID) )
|
|
|
|
wp_die( __('You attempted to edit a page that doesn’t exist. Perhaps it was deleted?') );
|
|
|
|
|
|
|
|
if ( !current_user_can('edit_page', $page_ID) )
|
|
|
|
wp_die( __('You are not allowed to edit this page.') );
|
|
|
|
|
|
|
|
if ( 'trash' == $post->post_status )
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2009-10-13 12:02:42 +02:00
|
|
|
wp_enqueue_script('post');
|
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
|
|
|
|
2009-08-12 12:57:15 +02:00
|
|
|
if ( $last = wp_check_post_lock( $post->ID ) ) {
|
2009-09-13 10:52:39 +02:00
|
|
|
add_action('admin_notices', '_admin_notice_post_locked' );
|
2009-08-12 12:57:15 +02:00
|
|
|
} 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
|
|
|
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':
|
2009-08-12 12:57:15 +02:00
|
|
|
$post_id = isset($_GET['post']) ? intval($_GET['post']) : intval($_POST['post_ID']);
|
2009-07-30 15:39:34 +02:00
|
|
|
check_admin_referer('trash-page_' . $post_id);
|
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
|
|
|
|
2009-11-20 21:12:01 +01:00
|
|
|
if ( !current_user_can('delete_page', $post_id) )
|
2009-07-30 15:39:34 +02:00
|
|
|
wp_die( __('You are not allowed to move this page to the trash.') );
|
|
|
|
|
|
|
|
if ( !wp_trash_post($post_id) )
|
2009-08-12 12:57:15 +02:00
|
|
|
wp_die( __('Error in moving to trash...') );
|
2009-07-30 15:39:34 +02:00
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
wp_redirect( add_query_arg( array('trashed' => 1, 'ids' => $post_id), $sendback ) );
|
2009-07-30 15:39:34 +02:00
|
|
|
exit();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'untrash':
|
2009-08-12 12:57:15 +02:00
|
|
|
$post_id = isset($_GET['post']) ? intval($_GET['post']) : intval($_POST['post_ID']);
|
2009-07-30 15:39:34 +02:00
|
|
|
check_admin_referer('untrash-page_' . $post_id);
|
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
|
|
|
|
2009-11-20 21:12:01 +01:00
|
|
|
if ( !current_user_can('delete_page', $post_id) )
|
2009-08-12 12:57:15 +02:00
|
|
|
wp_die( __('You are not allowed to move this page out of the trash.') );
|
2009-07-30 15:39:34 +02:00
|
|
|
|
|
|
|
if ( !wp_untrash_post($post_id) )
|
2009-08-12 12:57:15 +02:00
|
|
|
wp_die( __('Error in restoring from trash...') );
|
2009-07-30 15:39:34 +02:00
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
wp_redirect( add_query_arg('untrashed', 1, $sendback) );
|
2009-07-30 15:39:34 +02:00
|
|
|
exit();
|
|
|
|
break;
|
|
|
|
|
2006-10-26 00:55:05 +02:00
|
|
|
case 'delete':
|
2009-08-12 12:57:15 +02:00
|
|
|
$page_id = isset($_GET['post']) ? intval($_GET['post']) : intval($_POST['post_ID']);
|
2006-10-26 00:55:05 +02:00
|
|
|
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...') );
|
|
|
|
}
|
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
wp_redirect( add_query_arg('deleted', 1, $sendback) );
|
2006-10-26 00:55:05 +02:00
|
|
|
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');
|
|
|
|
?>
|