]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/post.php
WordPress 4.1.3-scripts
[autoinstalls/wordpress.git] / wp-admin / post.php
1 <?php
2 /**
3  * Edit post administration panel.
4  *
5  * Manage Post actions: post, edit, delete, etc.
6  *
7  * @package WordPress
8  * @subpackage Administration
9  */
10
11 /** WordPress Administration Bootstrap */
12 require_once( dirname( __FILE__ ) . '/admin.php' );
13
14 $parent_file = 'edit.php';
15 $submenu_file = 'edit.php';
16
17 wp_reset_vars( array( 'action' ) );
18
19 if ( isset( $_GET['post'] ) )
20         $post_id = $post_ID = (int) $_GET['post'];
21 elseif ( isset( $_POST['post_ID'] ) )
22         $post_id = $post_ID = (int) $_POST['post_ID'];
23 else
24         $post_id = $post_ID = 0;
25
26 $post = $post_type = $post_type_object = null;
27
28 if ( $post_id )
29         $post = get_post( $post_id );
30
31 if ( $post ) {
32         $post_type = $post->post_type;
33         $post_type_object = get_post_type_object( $post_type );
34 }
35
36 /**
37  * Redirect to previous page.
38  *
39  * @param int $post_id Optional. Post ID.
40  */
41 function redirect_post($post_id = '') {
42         if ( isset($_POST['save']) || isset($_POST['publish']) ) {
43                 $status = get_post_status( $post_id );
44
45                 if ( isset( $_POST['publish'] ) ) {
46                         switch ( $status ) {
47                                 case 'pending':
48                                         $message = 8;
49                                         break;
50                                 case 'future':
51                                         $message = 9;
52                                         break;
53                                 default:
54                                         $message = 6;
55                         }
56                 } else {
57                                 $message = 'draft' == $status ? 10 : 1;
58                 }
59
60                 $location = add_query_arg( 'message', $message, get_edit_post_link( $post_id, 'url' ) );
61         } elseif ( isset($_POST['addmeta']) && $_POST['addmeta'] ) {
62                 $location = add_query_arg( 'message', 2, wp_get_referer() );
63                 $location = explode('#', $location);
64                 $location = $location[0] . '#postcustom';
65         } elseif ( isset($_POST['deletemeta']) && $_POST['deletemeta'] ) {
66                 $location = add_query_arg( 'message', 3, wp_get_referer() );
67                 $location = explode('#', $location);
68                 $location = $location[0] . '#postcustom';
69         } else {
70                 $location = add_query_arg( 'message', 4, get_edit_post_link( $post_id, 'url' ) );
71         }
72
73         /**
74          * Filter the post redirect destination URL.
75          *
76          * @since 2.9.0
77          *
78          * @param string $location The destination URL.
79          * @param int    $post_id  The post ID.
80          */
81         wp_redirect( apply_filters( 'redirect_post_location', $location, $post_id ) );
82         exit;
83 }
84
85 if ( isset( $_POST['deletepost'] ) )
86         $action = 'delete';
87 elseif ( isset($_POST['wp-preview']) && 'dopreview' == $_POST['wp-preview'] )
88         $action = 'preview';
89
90 $sendback = wp_get_referer();
91 if ( ! $sendback ||
92      strpos( $sendback, 'post.php' ) !== false ||
93      strpos( $sendback, 'post-new.php' ) !== false ) {
94         if ( 'attachment' == $post_type ) {
95                 $sendback = admin_url( 'upload.php' );
96         } else {
97                 $sendback = admin_url( 'edit.php' );
98                 $sendback .= ( ! empty( $post_type ) ) ? '?post_type=' . $post_type : '';
99         }
100 } else {
101         $sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), $sendback );
102 }
103
104 switch($action) {
105 case 'post-quickdraft-save':
106         // Check nonce and capabilities
107         $nonce = $_REQUEST['_wpnonce'];
108         $error_msg = false;
109
110         // For output of the quickdraft dashboard widget
111         require_once ABSPATH . 'wp-admin/includes/dashboard.php';
112
113         if ( ! wp_verify_nonce( $nonce, 'add-post' ) )
114                 $error_msg = __( 'Unable to submit this form, please refresh and try again.' );
115
116         if ( ! current_user_can( 'edit_posts' ) )
117                 $error_msg = __( 'Oops, you don&#8217;t have access to add new drafts.' );
118
119         if ( $error_msg )
120                 return wp_dashboard_quick_press( $error_msg );
121
122         $post = get_post( $_REQUEST['post_ID'] );
123         check_admin_referer( 'add-' . $post->post_type );
124
125         $_POST['comment_status'] = get_option( 'default_comment_status' );
126         $_POST['ping_status'] = get_option( 'default_ping_status' );
127
128         edit_post();
129         wp_dashboard_quick_press();
130         exit;
131
132 case 'postajaxpost':
133 case 'post':
134         check_admin_referer( 'add-' . $post_type );
135         $post_id = 'postajaxpost' == $action ? edit_post() : write_post();
136         redirect_post( $post_id );
137         exit();
138
139 case 'edit':
140         $editing = true;
141
142         if ( empty( $post_id ) ) {
143                 wp_redirect( admin_url('post.php') );
144                 exit();
145         }
146
147         if ( ! $post )
148                 wp_die( __( 'You attempted to edit an item that doesn&#8217;t exist. Perhaps it was deleted?' ) );
149
150         if ( ! $post_type_object )
151                 wp_die( __( 'Unknown post type.' ) );
152
153         if ( ! current_user_can( 'edit_post', $post_id ) )
154                 wp_die( __( 'You are not allowed to edit this item.' ) );
155
156         if ( 'trash' == $post->post_status )
157                 wp_die( __( 'You can&#8217;t edit this item because it is in the Trash. Please restore it and try again.' ) );
158
159         if ( ! empty( $_GET['get-post-lock'] ) ) {
160                 wp_set_post_lock( $post_id );
161                 wp_redirect( get_edit_post_link( $post_id, 'url' ) );
162                 exit();
163         }
164
165         $post_type = $post->post_type;
166         if ( 'post' == $post_type ) {
167                 $parent_file = "edit.php";
168                 $submenu_file = "edit.php";
169                 $post_new_file = "post-new.php";
170         } elseif ( 'attachment' == $post_type ) {
171                 $parent_file = 'upload.php';
172                 $submenu_file = 'upload.php';
173                 $post_new_file = 'media-new.php';
174         } else {
175                 if ( isset( $post_type_object ) && $post_type_object->show_in_menu && $post_type_object->show_in_menu !== true )
176                         $parent_file = $post_type_object->show_in_menu;
177                 else
178                         $parent_file = "edit.php?post_type=$post_type";
179                 $submenu_file = "edit.php?post_type=$post_type";
180                 $post_new_file = "post-new.php?post_type=$post_type";
181         }
182
183         if ( ! wp_check_post_lock( $post->ID ) ) {
184                 $active_post_lock = wp_set_post_lock( $post->ID );
185
186                 if ( 'attachment' !== $post_type )
187                         wp_enqueue_script('autosave');
188         }
189
190         if ( is_multisite() ) {
191                 add_action( 'admin_footer', '_admin_notice_post_locked' );
192         } else {
193                 $check_users = get_users( array( 'fields' => 'ID', 'number' => 2 ) );
194
195                 if ( count( $check_users ) > 1 )
196                         add_action( 'admin_footer', '_admin_notice_post_locked' );
197
198                 unset( $check_users );
199         }
200
201         $title = $post_type_object->labels->edit_item;
202         $post = get_post($post_id, OBJECT, 'edit');
203
204         if ( post_type_supports($post_type, 'comments') ) {
205                 wp_enqueue_script('admin-comments');
206                 enqueue_comment_hotkeys_js();
207         }
208
209         include( ABSPATH . 'wp-admin/edit-form-advanced.php' );
210
211         break;
212
213 case 'editattachment':
214         check_admin_referer('update-post_' . $post_id);
215
216         // Don't let these be changed
217         unset($_POST['guid']);
218         $_POST['post_type'] = 'attachment';
219
220         // Update the thumbnail filename
221         $newmeta = wp_get_attachment_metadata( $post_id, true );
222         $newmeta['thumb'] = $_POST['thumb'];
223
224         wp_update_attachment_metadata( $post_id, $newmeta );
225
226 case 'editpost':
227         check_admin_referer('update-post_' . $post_id);
228
229         $post_id = edit_post();
230
231         // Session cookie flag that the post was saved
232         if ( isset( $_COOKIE['wp-saving-post'] ) && $_COOKIE['wp-saving-post'] === $post_id . '-check' ) {
233                 setcookie( 'wp-saving-post', $post_id . '-saved', time() + DAY_IN_SECONDS );
234         }
235
236         redirect_post($post_id); // Send user on their way while we keep working
237
238         exit();
239
240 case 'trash':
241         check_admin_referer('trash-post_' . $post_id);
242
243         if ( ! $post )
244                 wp_die( __( 'The item you are trying to move to the Trash no longer exists.' ) );
245
246         if ( ! $post_type_object )
247                 wp_die( __( 'Unknown post type.' ) );
248
249         if ( ! current_user_can( 'delete_post', $post_id ) )
250                 wp_die( __( 'You are not allowed to move this item to the Trash.' ) );
251
252         if ( $user_id = wp_check_post_lock( $post_id ) ) {
253                 $user = get_userdata( $user_id );
254                 wp_die( sprintf( __( 'You cannot move this item to the Trash. %s is currently editing.' ), $user->display_name ) );
255         }
256
257         if ( ! wp_trash_post( $post_id ) )
258                 wp_die( __( 'Error in moving to Trash.' ) );
259
260         wp_redirect( add_query_arg( array('trashed' => 1, 'ids' => $post_id), $sendback ) );
261         exit();
262
263 case 'untrash':
264         check_admin_referer('untrash-post_' . $post_id);
265
266         if ( ! $post )
267                 wp_die( __( 'The item you are trying to restore from the Trash no longer exists.' ) );
268
269         if ( ! $post_type_object )
270                 wp_die( __( 'Unknown post type.' ) );
271
272         if ( ! current_user_can( 'delete_post', $post_id ) )
273                 wp_die( __( 'You are not allowed to move this item out of the Trash.' ) );
274
275         if ( ! wp_untrash_post( $post_id ) )
276                 wp_die( __( 'Error in restoring from Trash.' ) );
277
278         wp_redirect( add_query_arg('untrashed', 1, $sendback) );
279         exit();
280
281 case 'delete':
282         check_admin_referer('delete-post_' . $post_id);
283
284         if ( ! $post )
285                 wp_die( __( 'This item has already been deleted.' ) );
286
287         if ( ! $post_type_object )
288                 wp_die( __( 'Unknown post type.' ) );
289
290         if ( ! current_user_can( 'delete_post', $post_id ) )
291                 wp_die( __( 'You are not allowed to delete this item.' ) );
292
293         $force = ! EMPTY_TRASH_DAYS;
294         if ( $post->post_type == 'attachment' ) {
295                 $force = ( $force || ! MEDIA_TRASH );
296                 if ( ! wp_delete_attachment( $post_id, $force ) )
297                         wp_die( __( 'Error in deleting.' ) );
298         } else {
299                 if ( ! wp_delete_post( $post_id, $force ) )
300                         wp_die( __( 'Error in deleting.' ) );
301         }
302
303         wp_redirect( add_query_arg('deleted', 1, $sendback) );
304         exit();
305
306 case 'preview':
307         check_admin_referer( 'update-post_' . $post_id );
308
309         $url = post_preview();
310
311         wp_redirect($url);
312         exit();
313
314 default:
315         wp_redirect( admin_url('edit.php') );
316         exit();
317 } // end switch
318 include( ABSPATH . 'wp-admin/admin-footer.php' );