2003-10-26 21:34:24 +01:00
|
|
|
<?php
|
2008-08-16 09:27:34 +02:00
|
|
|
/**
|
|
|
|
* Edit post administration panel.
|
|
|
|
*
|
|
|
|
* Manage Post actions: post, edit, delete, etc.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** WordPress Administration Bootstrap */
|
2004-10-19 05:03:06 +02:00
|
|
|
require_once('admin.php');
|
2003-10-26 21:34:24 +01:00
|
|
|
|
2006-05-18 08:49:22 +02:00
|
|
|
$parent_file = 'edit.php';
|
|
|
|
$submenu_file = 'edit.php';
|
2003-12-18 10:36:13 +01:00
|
|
|
|
2006-07-03 21:03:37 +02:00
|
|
|
wp_reset_vars(array('action', 'safe_mode', 'withcomments', 'posts', 'content', 'edited_post_title', 'comment_error', 'profile', 'trackback_url', 'excerpt', 'showcomments', 'commentstart', 'commentend', 'commentorder'));
|
2006-04-19 10:02:16 +02:00
|
|
|
|
2008-08-16 09:27:34 +02:00
|
|
|
/**
|
|
|
|
* Redirect to previous page.
|
|
|
|
*
|
|
|
|
* @param int $post_ID Optional. Post ID.
|
|
|
|
*/
|
2008-03-26 19:55:24 +01:00
|
|
|
function redirect_post($post_ID = '') {
|
|
|
|
global $action;
|
|
|
|
|
|
|
|
$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 ( !empty($_POST['mode']) && 'sidebar' == $_POST['mode'] ) {
|
2008-09-06 08:10:38 +02:00
|
|
|
if ( isset($_POST['saveasdraft']) )
|
|
|
|
$location = 'sidebar.php?a=c';
|
|
|
|
elseif ( isset($_POST['publish']) )
|
|
|
|
$location = 'sidebar.php?a=b';
|
2009-10-10 09:24:05 +02:00
|
|
|
} elseif ( isset($_POST['save']) || isset($_POST['publish']) ) {
|
|
|
|
$status = get_post_status( $post_ID );
|
|
|
|
|
2009-05-02 23:44:09 +02:00
|
|
|
if ( isset( $_POST['publish'] ) ) {
|
2009-10-10 09:24:05 +02:00
|
|
|
switch ( $status ) {
|
2009-09-01 23:15:20 +02:00
|
|
|
case 'pending':
|
2009-10-10 09:24:05 +02:00
|
|
|
$message = 8;
|
2009-09-01 23:15:20 +02:00
|
|
|
break;
|
|
|
|
case 'future':
|
2009-10-10 09:24:05 +02:00
|
|
|
$message = 9;
|
2009-09-01 23:15:20 +02:00
|
|
|
break;
|
|
|
|
default:
|
2009-10-10 09:24:05 +02:00
|
|
|
$message = 6;
|
2009-09-01 23:15:20 +02:00
|
|
|
}
|
2009-05-02 23:44:09 +02:00
|
|
|
} else {
|
2009-10-10 09:24:05 +02:00
|
|
|
$message = 'draft' == $status ? 10 : 1;
|
2008-09-06 01:54:49 +02:00
|
|
|
}
|
2009-10-10 09:24:05 +02:00
|
|
|
|
2009-10-11 02:37:26 +02:00
|
|
|
$location = add_query_arg( 'message', $message, get_edit_post_link( $post_ID, 'url' ) );
|
2009-10-10 09:24:05 +02:00
|
|
|
} elseif ( isset($_POST['addmeta']) && $_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';
|
2009-10-10 09:24:05 +02:00
|
|
|
} elseif ( isset($_POST['deletemeta']) && $_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';
|
2008-08-20 23:42:31 +02:00
|
|
|
} elseif ( 'post-quickpress-save-cont' == $_POST['action'] ) {
|
|
|
|
$location = "post.php?action=edit&post=$post_ID&message=7";
|
2008-03-26 19:55:24 +01:00
|
|
|
} else {
|
2008-07-29 07:22:58 +02:00
|
|
|
$location = add_query_arg( 'message', 4, get_edit_post_link( $post_ID, 'url' ) );
|
2008-03-26 19:55:24 +01:00
|
|
|
}
|
|
|
|
|
2009-11-22 23:30:27 +01:00
|
|
|
wp_redirect( apply_filters( 'redirect_post_location', $location, $post_ID ) );
|
2008-03-26 19:55:24 +01:00
|
|
|
}
|
|
|
|
|
2006-04-19 10:02:16 +02:00
|
|
|
if ( isset( $_POST['deletepost'] ) )
|
|
|
|
$action = 'delete';
|
2008-10-31 23:47:07 +01:00
|
|
|
elseif ( isset($_POST['wp-preview']) && 'dopreview' == $_POST['wp-preview'] )
|
|
|
|
$action = 'preview';
|
2005-04-16 18:31:38 +02:00
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
$sendback = wp_get_referer();
|
|
|
|
if ( strpos($sendback, 'post.php') !== false || strpos($sendback, 'post-new.php') !== false )
|
|
|
|
$sendback = admin_url('edit.php');
|
|
|
|
else
|
|
|
|
$sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), $sendback );
|
|
|
|
|
2003-10-26 21:34:24 +01:00
|
|
|
switch($action) {
|
2006-03-29 03:51:55 +02:00
|
|
|
case 'postajaxpost':
|
2004-04-28 06:49:16 +02:00
|
|
|
case 'post':
|
2008-08-20 23:42:31 +02:00
|
|
|
case 'post-quickpress-publish':
|
|
|
|
case 'post-quickpress-save':
|
2006-05-03 00:36:06 +02:00
|
|
|
check_admin_referer('add-post');
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2008-08-20 23:42:31 +02:00
|
|
|
if ( 'post-quickpress-publish' == $action )
|
2008-09-06 07:16:56 +02:00
|
|
|
$_POST['publish'] = 'publish'; // tell write_post() to publish
|
|
|
|
|
|
|
|
if ( 'post-quickpress-publish' == $action || 'post-quickpress-save' == $action ) {
|
2008-09-03 09:13:51 +02:00
|
|
|
$_POST['comment_status'] = get_option('default_comment_status');
|
|
|
|
$_POST['ping_status'] = get_option('default_ping_status');
|
2008-09-06 07:16:56 +02:00
|
|
|
}
|
2008-08-20 23:42:31 +02:00
|
|
|
|
|
|
|
if ( !empty( $_POST['quickpress_post_ID'] ) ) {
|
|
|
|
$_POST['post_ID'] = (int) $_POST['quickpress_post_ID'];
|
|
|
|
$post_ID = edit_post();
|
|
|
|
} else {
|
|
|
|
$post_ID = 'postajaxpost' == $action ? edit_post() : write_post();
|
|
|
|
}
|
|
|
|
|
2008-10-09 01:32:34 +02:00
|
|
|
if ( 0 === strpos( $action, 'post-quickpress' ) ) {
|
2008-08-20 23:42:31 +02:00
|
|
|
$_POST['post_ID'] = $post_ID;
|
|
|
|
// output the quickpress dashboard widget
|
|
|
|
require_once(ABSPATH . 'wp-admin/includes/dashboard.php');
|
2008-10-09 01:32:34 +02:00
|
|
|
wp_dashboard_quick_press();
|
2008-08-20 23:42:31 +02:00
|
|
|
exit;
|
|
|
|
}
|
2003-10-26 21:34:24 +01:00
|
|
|
|
2008-03-26 19:55:24 +01:00
|
|
|
redirect_post($post_ID);
|
2004-04-28 06:49:16 +02:00
|
|
|
exit();
|
|
|
|
break;
|
2003-10-26 21:34:24 +01:00
|
|
|
|
2004-04-28 06:49:16 +02:00
|
|
|
case 'edit':
|
2006-02-21 07:11:46 +01:00
|
|
|
$editing = true;
|
2008-02-06 22:40:52 +01:00
|
|
|
|
|
|
|
if ( empty( $_GET['post'] ) ) {
|
|
|
|
wp_redirect("post.php");
|
|
|
|
exit();
|
|
|
|
}
|
2005-06-19 04:51:48 +02:00
|
|
|
$post_ID = $p = (int) $_GET['post'];
|
2006-02-21 07:11:46 +01:00
|
|
|
$post = get_post($post_ID);
|
2007-02-27 16:24:54 +01:00
|
|
|
|
2009-08-12 12:57:15 +02:00
|
|
|
if ( empty($post->ID) )
|
|
|
|
wp_die( __('You attempted to edit a post that doesn’t exist. Perhaps it was deleted?') );
|
|
|
|
|
|
|
|
if ( !current_user_can('edit_post', $post_ID) )
|
|
|
|
wp_die( __('You are not allowed to edit this post.') );
|
|
|
|
|
|
|
|
if ( 'trash' == $post->post_status )
|
|
|
|
wp_die( __('You can’t edit this post because it is in the Trash. Please restore it and try again.') );
|
2007-08-16 00:31:19 +02:00
|
|
|
|
2008-04-19 01:38:21 +02:00
|
|
|
if ( 'post' != $post->post_type ) {
|
|
|
|
wp_redirect( get_edit_post_link( $post->ID, 'url' ) );
|
2007-01-22 09:16:58 +01:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2008-01-03 02:34:11 +01: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-09 09:14:29 +01:00
|
|
|
wp_enqueue_script('media-upload');
|
2008-04-29 21:17:23 +02:00
|
|
|
wp_enqueue_script('word-count');
|
2008-08-24 08:56:22 +02:00
|
|
|
wp_enqueue_script( 'admin-comments' );
|
2008-10-17 00:23:32 +02:00
|
|
|
enqueue_comment_hotkeys_js();
|
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-03 02:34:11 +01:00
|
|
|
|
2008-10-31 17:40:55 +01:00
|
|
|
$title = __('Edit Post');
|
2005-06-19 04:51:48 +02:00
|
|
|
$post = get_post_to_edit($post_ID);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-02-21 07:11:46 +01:00
|
|
|
include('edit-form-advanced.php');
|
2004-10-22 16:41:01 +02:00
|
|
|
|
2004-04-28 06:49:16 +02:00
|
|
|
break;
|
|
|
|
|
2005-12-13 20:19:56 +01:00
|
|
|
case 'editattachment':
|
|
|
|
$post_id = (int) $_POST['post_ID'];
|
|
|
|
|
2006-05-27 01:08:05 +02:00
|
|
|
check_admin_referer('update-attachment_' . $post_id);
|
2006-05-03 00:36:06 +02:00
|
|
|
|
2005-12-13 20:19:56 +01:00
|
|
|
// Don't let these be changed
|
|
|
|
unset($_POST['guid']);
|
2006-02-09 11:03:48 +01:00
|
|
|
$_POST['post_type'] = 'attachment';
|
2005-12-13 20:19:56 +01:00
|
|
|
|
|
|
|
// Update the thumbnail filename
|
2006-12-05 23:37:19 +01:00
|
|
|
$newmeta = wp_get_attachment_metadata( $post_id, true );
|
2005-12-13 20:19:56 +01:00
|
|
|
$newmeta['thumb'] = $_POST['thumb'];
|
|
|
|
|
2006-12-05 23:37:19 +01:00
|
|
|
wp_update_attachment_metadata( $post_id, $newmeta );
|
2005-12-13 20:19:56 +01:00
|
|
|
|
2004-04-28 06:49:16 +02:00
|
|
|
case 'editpost':
|
2006-05-03 00:36:06 +02:00
|
|
|
$post_ID = (int) $_POST['post_ID'];
|
2006-05-27 01:08:05 +02:00
|
|
|
check_admin_referer('update-post_' . $post_ID);
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2005-09-08 22:38:30 +02:00
|
|
|
$post_ID = edit_post();
|
2006-06-24 09:34:35 +02:00
|
|
|
|
2008-03-26 19:55:24 +01:00
|
|
|
redirect_post($post_ID); // Send user on their way while we keep working
|
2005-02-14 10:46:08 +01:00
|
|
|
|
2004-04-30 10:56:49 +02:00
|
|
|
exit();
|
2003-11-12 16:22:47 +01:00
|
|
|
break;
|
2003-11-06 01:34:41 +01:00
|
|
|
|
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-post_' . $post_id);
|
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
|
|
|
|
|
|
|
if ( !current_user_can('delete_post', $post_id) )
|
|
|
|
wp_die( __('You are not allowed to move this post to the trash.') );
|
|
|
|
|
|
|
|
if ( ! wp_trash_post($post_id) )
|
|
|
|
wp_die( __('Error in moving to trash...') );
|
|
|
|
|
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-post_' . $post_id);
|
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
|
|
|
|
|
|
|
if ( !current_user_can('delete_post', $post_id) )
|
2009-08-12 12:57:15 +02:00
|
|
|
wp_die( __('You are not allowed to move this post 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;
|
|
|
|
|
2004-04-28 06:49:16 +02:00
|
|
|
case 'delete':
|
2004-11-27 05:46:54 +01:00
|
|
|
$post_id = (isset($_GET['post'])) ? intval($_GET['post']) : intval($_POST['post_ID']);
|
2006-05-27 01:08:05 +02:00
|
|
|
check_admin_referer('delete-post_' . $post_id);
|
2005-12-13 20:19:56 +01:00
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
2006-02-12 08:53:23 +01:00
|
|
|
|
2006-02-21 07:11:46 +01:00
|
|
|
if ( !current_user_can('delete_post', $post_id) )
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die( __('You are not allowed to delete this post.') );
|
2004-04-28 06:49:16 +02:00
|
|
|
|
2006-02-09 11:03:48 +01:00
|
|
|
if ( $post->post_type == 'attachment' ) {
|
2005-12-15 23:26:22 +01:00
|
|
|
if ( ! wp_delete_attachment($post_id) )
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die( __('Error in deleting...') );
|
2005-12-15 23:26:22 +01:00
|
|
|
} else {
|
2007-09-04 01:32:58 +02:00
|
|
|
if ( !wp_delete_post($post_id) )
|
2006-07-06 00:00:03 +02:00
|
|
|
wp_die( __('Error in deleting...') );
|
2005-12-15 23:26:22 +01:00
|
|
|
}
|
2003-11-12 16:22:47 +01:00
|
|
|
|
2009-12-02 00:28:20 +01:00
|
|
|
wp_redirect( add_query_arg('deleted', 1, $sendback) );
|
2006-02-21 07:11:46 +01:00
|
|
|
exit();
|
2003-11-12 16:22:47 +01:00
|
|
|
break;
|
2004-04-28 06:49:16 +02:00
|
|
|
|
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;
|
|
|
|
|
2004-04-28 06:49:16 +02:00
|
|
|
default:
|
2006-06-27 07:38:56 +02:00
|
|
|
wp_redirect('edit.php');
|
2006-04-04 02:12:43 +02:00
|
|
|
exit();
|
2004-04-28 06:49:16 +02:00
|
|
|
break;
|
2003-10-26 21:34:24 +01:00
|
|
|
} // end switch
|
2003-12-11 01:22:36 +01:00
|
|
|
include('admin-footer.php');
|
2003-11-12 16:22:47 +01:00
|
|
|
?>
|