2003-10-26 15:34:24 -05:00
|
|
|
<?php
|
2004-10-18 23:03:06 -04:00
|
|
|
require_once('admin.php');
|
2003-10-26 15:34:24 -05:00
|
|
|
|
2006-05-18 02:49:22 -04:00
|
|
|
$parent_file = 'edit.php';
|
|
|
|
$submenu_file = 'edit.php';
|
2003-12-18 04:36:13 -05:00
|
|
|
|
2006-07-03 15:03:37 -04: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 04:02:16 -04:00
|
|
|
|
|
|
|
if ( isset( $_POST['deletepost'] ) )
|
|
|
|
$action = 'delete';
|
2005-04-16 12:31:38 -04:00
|
|
|
|
2003-10-26 15:34:24 -05:00
|
|
|
switch($action) {
|
2006-03-28 20:51:55 -05:00
|
|
|
case 'postajaxpost':
|
2004-04-28 00:49:16 -04:00
|
|
|
case 'post':
|
2006-05-18 02:49:22 -04:00
|
|
|
$parent_file = 'post-new.php';
|
|
|
|
$submenu_file = 'post-new.php';
|
2006-05-02 18:36:06 -04:00
|
|
|
check_admin_referer('add-post');
|
2006-11-19 02:56:05 -05:00
|
|
|
|
2006-03-28 20:51:55 -05:00
|
|
|
$post_ID = 'post' == $action ? write_post() : edit_post();
|
2003-10-26 15:34:24 -05:00
|
|
|
|
2005-06-18 15:08:38 -04:00
|
|
|
// Redirect.
|
2004-05-10 04:33:03 -04:00
|
|
|
if (!empty($_POST['mode'])) {
|
|
|
|
switch($_POST['mode']) {
|
|
|
|
case 'bookmarklet':
|
2005-11-16 22:26:24 -05:00
|
|
|
$location = $_POST['referredby'];
|
2004-05-10 04:33:03 -04:00
|
|
|
break;
|
|
|
|
case 'sidebar':
|
|
|
|
$location = 'sidebar.php?a=b';
|
|
|
|
break;
|
|
|
|
default:
|
2006-02-21 01:11:46 -05:00
|
|
|
$location = 'post-new.php';
|
2004-05-10 04:33:03 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2006-10-04 03:46:47 -04:00
|
|
|
$location = "post-new.php?posted=$post_ID";
|
2004-05-10 04:33:03 -04:00
|
|
|
}
|
2004-10-14 03:26:41 -04:00
|
|
|
|
2005-11-16 22:26:24 -05:00
|
|
|
if ( isset($_POST['save']) )
|
2004-04-28 00:49:16 -04:00
|
|
|
$location = "post.php?action=edit&post=$post_ID";
|
2003-10-26 15:34:24 -05:00
|
|
|
|
2006-06-27 01:38:56 -04:00
|
|
|
wp_redirect($location);
|
2004-04-28 00:49:16 -04:00
|
|
|
exit();
|
|
|
|
break;
|
2003-10-26 15:34:24 -05:00
|
|
|
|
2004-04-28 00:49:16 -04:00
|
|
|
case 'edit':
|
|
|
|
$title = __('Edit');
|
2006-02-21 01:11:46 -05:00
|
|
|
$editing = true;
|
2005-06-18 22:51:48 -04:00
|
|
|
$post_ID = $p = (int) $_GET['post'];
|
2006-02-21 01:11:46 -05:00
|
|
|
$post = get_post($post_ID);
|
2007-02-27 10:24:54 -05:00
|
|
|
|
2007-01-22 03:16:58 -05:00
|
|
|
if ( 'page' == $post->post_type ) {
|
|
|
|
wp_redirect("page.php?action=edit&post=$post_ID");
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2006-08-10 23:54:45 -04:00
|
|
|
if($post->post_status == 'draft') {
|
|
|
|
wp_enqueue_script('prototype');
|
|
|
|
wp_enqueue_script('autosave');
|
|
|
|
}
|
|
|
|
require_once('admin-header.php');
|
|
|
|
|
2005-07-11 18:39:50 -04:00
|
|
|
if ( !current_user_can('edit_post', $post_ID) )
|
2005-02-24 19:20:48 -05:00
|
|
|
die ( __('You are not allowed to edit this post.') );
|
2005-06-18 22:51:48 -04:00
|
|
|
|
|
|
|
$post = get_post_to_edit($post_ID);
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2006-02-21 01:11:46 -05:00
|
|
|
include('edit-form-advanced.php');
|
2004-10-22 10:41:01 -04:00
|
|
|
|
2004-04-28 00:49:16 -04:00
|
|
|
break;
|
|
|
|
|
2005-12-13 14:19:56 -05:00
|
|
|
case 'editattachment':
|
|
|
|
$post_id = (int) $_POST['post_ID'];
|
|
|
|
|
2006-05-26 19:08:05 -04:00
|
|
|
check_admin_referer('update-attachment_' . $post_id);
|
2006-05-02 18:36:06 -04:00
|
|
|
|
2005-12-13 14:19:56 -05:00
|
|
|
// Don't let these be changed
|
|
|
|
unset($_POST['guid']);
|
2006-02-09 05:03:48 -05:00
|
|
|
$_POST['post_type'] = 'attachment';
|
2005-12-13 14:19:56 -05:00
|
|
|
|
|
|
|
// Update the thumbnail filename
|
2006-12-05 17:37:19 -05:00
|
|
|
$newmeta = wp_get_attachment_metadata( $post_id, true );
|
2005-12-13 14:19:56 -05:00
|
|
|
$newmeta['thumb'] = $_POST['thumb'];
|
|
|
|
|
2006-12-05 17:37:19 -05:00
|
|
|
wp_update_attachment_metadata( $post_id, $newmeta );
|
2005-12-13 14:19:56 -05:00
|
|
|
|
2004-04-28 00:49:16 -04:00
|
|
|
case 'editpost':
|
2006-05-02 18:36:06 -04:00
|
|
|
$post_ID = (int) $_POST['post_ID'];
|
2006-05-26 19:08:05 -04:00
|
|
|
check_admin_referer('update-post_' . $post_ID);
|
2006-11-19 02:56:05 -05:00
|
|
|
|
2005-09-08 16:38:30 -04:00
|
|
|
$post_ID = edit_post();
|
2004-04-28 00:49:16 -04:00
|
|
|
|
2006-08-11 15:13:00 -04:00
|
|
|
if ( 'post' == $_POST['originalaction'] ) {
|
|
|
|
if (!empty($_POST['mode'])) {
|
|
|
|
switch($_POST['mode']) {
|
|
|
|
case 'bookmarklet':
|
|
|
|
$location = $_POST['referredby'];
|
|
|
|
break;
|
|
|
|
case 'sidebar':
|
|
|
|
$location = 'sidebar.php?a=b';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$location = 'post-new.php';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2006-10-04 03:46:47 -04:00
|
|
|
$location = "post-new.php?posted=$post_ID";
|
2006-08-11 15:13:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( isset($_POST['save']) )
|
|
|
|
$location = "post.php?action=edit&post=$post_ID";
|
2005-02-14 04:46:08 -05:00
|
|
|
} else {
|
2006-08-11 15:13:00 -04:00
|
|
|
$referredby = '';
|
|
|
|
if ( !empty($_POST['referredby']) )
|
|
|
|
$referredby = preg_replace('|https?://[^/]+|i', '', $_POST['referredby']);
|
|
|
|
$referer = preg_replace('|https?://[^/]+|i', '', wp_get_referer());
|
2007-02-27 10:24:54 -05:00
|
|
|
|
2006-08-11 15:13:00 -04:00
|
|
|
if ($_POST['save']) {
|
|
|
|
$location = "post.php?action=edit&post=$post_ID";
|
|
|
|
} elseif ($_POST['updatemeta']) {
|
|
|
|
$location = wp_get_referer() . '&message=2#postcustom';
|
|
|
|
} elseif ($_POST['deletemeta']) {
|
|
|
|
$location = wp_get_referer() . '&message=3#postcustom';
|
|
|
|
} elseif (!empty($referredby) && $referredby != $referer) {
|
|
|
|
$location = $_POST['referredby'];
|
|
|
|
if ( $_POST['referredby'] == 'redo' )
|
|
|
|
$location = get_permalink( $post_ID );
|
|
|
|
} elseif ($action == 'editattachment') {
|
|
|
|
$location = 'attachments.php';
|
|
|
|
} else {
|
|
|
|
$location = 'post-new.php';
|
|
|
|
}
|
2005-02-14 04:46:08 -05:00
|
|
|
}
|
2006-06-24 03:34:35 -04:00
|
|
|
|
2006-06-27 01:38:56 -04:00
|
|
|
wp_redirect($location); // Send user on their way while we keep working
|
2005-02-14 04:46:08 -05:00
|
|
|
|
2004-04-30 04:56:49 -04:00
|
|
|
exit();
|
2003-11-12 10:22:47 -05:00
|
|
|
break;
|
2003-11-05 19:34:41 -05:00
|
|
|
|
2004-04-28 00:49:16 -04:00
|
|
|
case 'delete':
|
2004-11-26 23:46:54 -05:00
|
|
|
$post_id = (isset($_GET['post'])) ? intval($_GET['post']) : intval($_POST['post_ID']);
|
2006-05-26 19:08:05 -04:00
|
|
|
check_admin_referer('delete-post_' . $post_id);
|
2005-12-13 14:19:56 -05:00
|
|
|
|
|
|
|
$post = & get_post($post_id);
|
2006-02-12 02:53:23 -05:00
|
|
|
|
2006-02-21 01:11:46 -05:00
|
|
|
if ( !current_user_can('delete_post', $post_id) )
|
2006-07-05 18:00:03 -04:00
|
|
|
wp_die( __('You are not allowed to delete this post.') );
|
2004-04-28 00:49:16 -04:00
|
|
|
|
2006-02-09 05:03:48 -05:00
|
|
|
if ( $post->post_type == 'attachment' ) {
|
2005-12-15 17:26:22 -05:00
|
|
|
if ( ! wp_delete_attachment($post_id) )
|
2006-07-05 18:00:03 -04:00
|
|
|
wp_die( __('Error in deleting...') );
|
2005-12-15 17:26:22 -05:00
|
|
|
} else {
|
|
|
|
if ( !wp_delete_post($post_id) )
|
2006-07-05 18:00:03 -04:00
|
|
|
wp_die( __('Error in deleting...') );
|
2005-12-15 17:26:22 -05:00
|
|
|
}
|
2003-11-12 10:22:47 -05:00
|
|
|
|
2006-06-24 03:34:35 -04:00
|
|
|
$sendback = wp_get_referer();
|
2007-03-07 00:29:15 -05:00
|
|
|
if (strpos($sendback, 'post.php') !== false) $sendback = get_option('siteurl') .'/wp-admin/post-new.php';
|
|
|
|
elseif (strpos($sendback, 'attachments.php') !== false) $sendback = get_option('siteurl') .'/wp-admin/attachments.php';
|
2004-10-05 12:22:31 -04:00
|
|
|
$sendback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $sendback);
|
2006-06-27 01:38:56 -04:00
|
|
|
wp_redirect($sendback);
|
2006-02-21 01:11:46 -05:00
|
|
|
exit();
|
2003-11-12 10:22:47 -05:00
|
|
|
break;
|
2004-04-28 00:49:16 -04:00
|
|
|
|
|
|
|
default:
|
2006-06-27 01:38:56 -04:00
|
|
|
wp_redirect('edit.php');
|
2006-04-03 20:12:43 -04:00
|
|
|
exit();
|
2004-04-28 00:49:16 -04:00
|
|
|
break;
|
2003-10-26 15:34:24 -05:00
|
|
|
} // end switch
|
2003-12-10 19:22:36 -05:00
|
|
|
include('admin-footer.php');
|
2003-11-12 10:22:47 -05:00
|
|
|
?>
|