]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form-advanced.php
Wordpress 2.5.1
[autoinstalls/wordpress.git] / wp-admin / edit-form-advanced.php
1  <?php
2 $action = isset($action)? $action : '';
3 if ( isset($_GET['message']) )
4         $_GET['message'] = absint( $_GET['message'] );
5 $messages[1] = sprintf( __( 'Post updated. Continue editing below or <a href="%s">go back</a>.' ), attribute_escape( stripslashes( $_GET['_wp_original_http_referer'] ) ) );
6 $messages[2] = __('Custom field updated.');
7 $messages[3] = __('Custom field deleted.');
8 $messages[4] = __('Post updated.');
9 ?>
10 <?php if (isset($_GET['message'])) : ?>
11 <div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div>
12 <?php endif; ?>
13
14 <form name="post" action="post.php" method="post" id="post">
15 <?php if ( (isset($mode) && 'bookmarklet' == $mode) || isset($_GET['popupurl']) ): ?>
16 <input type="hidden" name="mode" value="bookmarklet" />
17 <?php endif; ?>
18
19 <div class="wrap">
20 <h2><?php _e('Write Post') ?></h2>
21 <?php
22
23 if (!isset($post_ID) || 0 == $post_ID) {
24         $form_action = 'post';
25         $temp_ID = -1 * time(); // don't change this formula without looking at wp_write_post()
26         $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
27         wp_nonce_field('add-post');
28 } else {
29         $post_ID = (int) $post_ID;
30         $form_action = 'editpost';
31         $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
32         wp_nonce_field('update-post_' .  $post_ID);
33 }
34
35 $form_pingback = '<input type="hidden" name="post_pingback" value="' . (int) get_option('default_pingback_flag') . '" id="post_pingback" />';
36
37 $form_prevstatus = '<input type="hidden" name="prev_status" value="' . attribute_escape( $post->post_status ) . '" />';
38
39 $form_trackback = '<input type="text" name="trackback_url" style="width: 415px" id="trackback" tabindex="7" value="'. attribute_escape( str_replace("\n", ' ', $post->to_ping) ) .'" />';
40
41 if ('' != $post->pinged) {
42         $pings = '<p>'. __('Already pinged:') . '</p><ul>';
43         $already_pinged = explode("\n", trim($post->pinged));
44         foreach ($already_pinged as $pinged_url) {
45                 $pings .= "\n\t<li>" . wp_specialchars($pinged_url) . "</li>";
46         }
47         $pings .= '</ul>';
48 }
49
50 $saveasdraft = '<input name="save" type="submit" id="save" class="button" tabindex="3" value="' . attribute_escape( __('Save and Continue Editing') ) . '" />';
51
52 ?>
53
54 <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
55 <input type="hidden" id="hiddenaction" name="action" value="<?php echo $form_action ?>" />
56 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo $form_action ?>" />
57 <input type="hidden" id="post_author" name="post_author" value="<?php echo attribute_escape( $post->post_author ); ?>" />
58 <input type="hidden" id="post_type" name="post_type" value="<?php echo $post->post_type ?>" />
59 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo $post->post_status ?>" />
60 <input name="referredby" type="hidden" id="referredby" value="<?php
61 if ( !empty($_REQUEST['popupurl']) )
62         echo clean_url(stripslashes($_REQUEST['popupurl']));
63 else if ( strpos( wp_get_referer(), '/wp-admin/' ) === false && $post_ID && url_to_postid(wp_get_referer()) === $post_ID  )
64         echo 'redo';
65 else
66         echo clean_url(stripslashes(wp_get_referer()));
67 ?>" />
68 <?php if ( 'draft' != $post->post_status ) wp_original_referer_field(true, 'previous'); ?>
69
70 <?php echo $form_extra ?>
71
72 <div id="poststuff">
73
74 <div class="submitbox" id="submitpost">
75
76 <div id="previewview">
77 <?php if ( 'publish' == $post->post_status ) { ?>
78 <a href="<?php echo clean_url(get_permalink($post->ID)); ?>" target="_blank" tabindex="4"><?php _e('View this Post'); ?></a>
79 <?php } elseif ( 'edit' == $action ) { ?>
80 <a href="<?php echo clean_url(apply_filters('preview_post_link', add_query_arg('preview', 'true', get_permalink($post->ID)))); ?>" target="_blank"  tabindex="4"><?php _e('Preview this Post'); ?></a>
81 <?php } ?>
82 </div>
83
84 <div class="inside">
85
86 <p><strong><?php _e('Publish Status') ?></strong></p>
87 <p>
88 <select name='post_status' tabindex='4'>
89 <?php if ( current_user_can('publish_posts') ) : // Contributors only get "Unpublished" and "Pending Review" ?>
90 <option<?php selected( $post->post_status, 'publish' ); selected( $post->post_status, 'private' );?> value='publish'><?php _e('Published') ?></option>
91 <?php if ( 'future' == $post->post_status ) : ?>
92 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option>
93 <?php endif; ?>
94 <?php endif; ?>
95 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option>
96 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Unpublished') ?></option>
97 </select>
98 </p>
99
100 <?php if ( current_user_can( 'publish_posts' ) ) : ?>
101 <p><label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> tabindex="4" /> <?php _e('Keep this post private') ?></label></p>
102 <?php endif; ?>
103 <?php
104 if ($post_ID) {
105         if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
106                 $stamp = __('Scheduled for:<br />%1$s at %2$s');
107         } else if ( 'publish' == $post->post_status ) { // already published
108                 $stamp = __('Published on:<br />%1$s at %2$s');
109         } else if ( '0000-00-00 00:00:00' == $post->post_date ) { // draft, 1 or more saves, no date specified
110                 $stamp = __('Publish immediately');
111         } else { // draft, 1 or more saves, date specified
112                 $stamp = __('Publish on:<br />%1$s at %2$s');
113         }
114         $date = mysql2date(get_option('date_format'), $post->post_date);
115         $time = mysql2date(get_option('time_format'), $post->post_date);
116 } else { // draft (no saves, and thus no date specified)
117         $stamp = __('Publish immediately');
118         $date = mysql2date(get_option('date_format'), current_time('mysql'));
119         $time = mysql2date(get_option('time_format'), current_time('mysql'));
120 }
121 ?>
122 <?php if ( current_user_can( 'publish_posts' ) ) : // Contributors don't get to choose the date of publish ?>
123 <p class="curtime"><?php printf($stamp, $date, $time); ?>
124 &nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a></p>
125
126 <div id='timestampdiv' class='hide-if-js'><?php touch_time(($action == 'edit'),1,4); ?></div>
127 <?php endif; ?>
128
129 </div>
130
131 <p class="submit">
132 <input type="submit" name="save" id="save-post" value="<?php _e('Save'); ?>" tabindex="4" class="button button-highlighted" />
133 <?php
134 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post_ID ) {
135 ?>
136 <?php if ( current_user_can('publish_posts') ) : ?>
137         <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />
138 <?php else : ?>
139         <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />
140 <?php endif; ?>
141 <?php
142 }
143
144 if ( ( 'edit' == $action) && current_user_can('delete_post', $post_ID) )
145         echo "<a class='submitdelete' href='" . wp_nonce_url("post.php?action=delete&amp;post=$post_ID", 'delete-post_' . $post_ID) . "' onclick=\"if ( confirm('" . js_escape(sprintf( ('draft' == $post->post_status) ? __("You are about to delete this draft '%s'\n  'Cancel' to stop, 'OK' to delete.") : __("You are about to delete this post '%s'\n  'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { return true;}return false;\">" . __('Delete&nbsp;post') . "</a>";
146 ?>
147 <br class="clear" />
148 <?php if ($post_ID): ?>
149 <?php if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
150         $last_user = get_userdata($last_id);
151         printf(__('Last edited by %1$s on %2$s at %3$s'), wp_specialchars( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
152 } else {
153         printf(__('Last edited on %1$s at %2$s'), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
154 }
155 ?>
156 <br class="clear" />
157 <?php endif; ?>
158 <span id="autosave"></span>
159 </p>
160
161 <div class="side-info">
162 <h5><?php _e('Related') ?></h5>
163
164 <ul>
165 <?php if ($post_ID): ?>
166 <li><a href="edit.php?p=<?php echo $post_ID ?>"><?php _e('See Comments on this Post') ?></a></li>
167 <?php endif; ?>
168 <li><a href="edit-comments.php"><?php _e('Manage All Comments') ?></a></li>
169 <li><a href="edit.php"><?php _e('Manage All Posts') ?></a></li>
170 <li><a href="categories.php"><?php _e('Manage All Categories') ?></a></li>
171 <li><a href="edit-tags.php"><?php _e('Manage All Tags') ?></a></li>
172 <li><a href="edit.php?post_status=draft"><?php _e('View Drafts'); ?></a></li>
173 <?php do_action('post_relatedlinks_list'); ?>
174 </ul>
175 </div>
176
177 <?php do_action('submitpost_box'); ?>
178 </div>
179
180 <div id="post-body">
181 <div id="titlediv">
182 <h3><?php _e('Title') ?></h3>
183 <div id="titlewrap">
184         <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attribute_escape($post->post_title); ?>" id="title" autocomplete="off" />
185 </div>
186 <div class="inside">
187 <?php $sample_permalink_html = get_sample_permalink_html($post->ID); ?>
188         <div id="edit-slug-box">
189 <?php if ( ! empty($post->ID) && ! empty($sample_permalink_html) ) :
190         echo $sample_permalink_html;
191 endif; ?>
192         </div>
193 </div>
194 </div>
195
196 <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
197 <h3><?php _e('Post') ?></h3>
198 <?php the_editor($post->post_content); ?>
199 <?php wp_nonce_field( 'autosave', 'autosavenonce', false ); ?>
200 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
201 <?php wp_nonce_field( 'getpermalink', 'getpermalinknonce', false ); ?>
202 <?php wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false ); ?>
203 </div>
204
205 <?php echo $form_pingback ?>
206 <?php echo $form_prevstatus ?>
207
208 <div id="tagsdiv" class="postbox <?php echo postbox_classes('tagsdiv', 'post'); ?>">
209 <h3><?php _e('Tags'); ?></h3>
210 <div class="inside">
211 <p id="jaxtag"><input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID ); ?>" /></p>
212 <div id="tagchecklist"></div>
213 </div>
214 </div>
215
216 <div id="categorydiv" class="postbox <?php echo postbox_classes('categorydiv', 'post'); ?>">
217 <h3><?php _e('Categories') ?></h3>
218 <div class="inside">
219
220 <div id="category-adder" class="wp-hidden-children">
221         <h4><a id="category-add-toggle" href="#category-add" class="hide-if-no-js" tabindex="3"><?php _e( '+ Add New Category' ); ?></a></h4>
222         <p id="category-add" class="wp-hidden-child">
223                 <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php _e( 'New category name' ); ?>" tabindex="3" />
224                 <?php wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category'), 'tab_index' => 3 ) ); ?>
225                 <input type="button" id="category-add-sumbit" class="add:categorychecklist:category-add button" value="<?php _e( 'Add' ); ?>" tabindex="3" />
226                 <?php wp_nonce_field( 'add-category', '_ajax_nonce', false ); ?>
227                 <span id="category-ajax-response"></span>
228         </p>
229 </div>
230
231 <ul id="category-tabs">
232         <li class="ui-tabs-selected"><a href="#categories-all" tabindex="3"><?php _e( 'All Categories' ); ?></a></li>
233         <li class="wp-no-js-hidden"><a href="#categories-pop" tabindex="3"><?php _e( 'Most Used' ); ?></a></li>
234 </ul>
235
236 <div id="categories-pop" class="ui-tabs-panel" style="display: none;">
237         <ul id="categorychecklist-pop" class="categorychecklist form-no-clear" >
238                 <?php $popular_ids = wp_popular_terms_checklist('category'); ?>
239         </ul>
240 </div>
241
242 <div id="categories-all" class="ui-tabs-panel">
243         <ul id="categorychecklist" class="list:category categorychecklist form-no-clear">
244                 <?php wp_category_checklist($post_ID) ?>
245         </ul>
246 </div>
247
248 </div>
249 </div>
250
251 <?php do_meta_boxes('post', 'normal', $post); ?>
252
253 <?php do_action('edit_form_advanced'); ?>
254
255 <h2><?php _e('Advanced Options'); ?></h2>
256
257 <div id="postexcerpt" class="postbox <?php echo postbox_classes('postexcerpt', 'post'); ?>">
258 <h3><?php _e('Excerpt') ?></h3>
259 <div class="inside"><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea>
260 <p><?php _e('Excerpts are optional hand-crafted summaries of your content. You can <a href="http://codex.wordpress.org/Template_Tags/the_excerpt" target="_blank">use them in your template</a>'); ?></p>
261 </div>
262 </div>
263
264 <div id="trackbacksdiv" class="postbox <?php echo postbox_classes('trackbacksdiv', 'post'); ?>">
265 <h3><?php _e('Trackbacks') ?></h3>
266 <div class="inside">
267 <p><?php _e('Send trackbacks to:'); ?> <?php echo $form_trackback; ?><br /> (<?php _e('Separate multiple URLs with spaces'); ?>)</p>
268 <p><?php _e('Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. If you link other WordPress blogs they&#8217;ll be notified automatically using <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">pingbacks</a>, no other action necessary.'); ?></p>
269 <?php
270 if ( ! empty($pings) )
271         echo $pings;
272 ?>
273 </div>
274 </div>
275
276 <div id="postcustom" class="postbox <?php echo postbox_classes('postcustom', 'post'); ?>">
277 <h3><?php _e('Custom Fields') ?></h3>
278 <div class="inside">
279 <div id="postcustomstuff">
280 <table cellpadding="3">
281 <?php
282 $metadata = has_meta($post_ID);
283 list_meta($metadata);
284 ?>
285
286 </table>
287 <?php
288         meta_form();
289 ?>
290 <div id="ajax-response"></div>
291 </div>
292 <p><?php _e('Custom fields can be used to add extra metadata to a post that you can <a href="http://codex.wordpress.org/Using_Custom_Fields" target="_blank">use in your theme</a>.'); ?></p>
293 </div>
294 </div>
295
296 <?php do_action('dbx_post_advanced'); ?>
297
298 <div id="commentstatusdiv" class="postbox <?php echo postbox_classes('commentstatusdiv', 'post'); ?>">
299 <h3><?php _e('Comments &amp; Pings') ?></h3>
300 <div class="inside">
301 <input name="advanced_view" type="hidden" value="1" />
302 <p><label for="comment_status" class="selectit">
303 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
304 <?php _e('Allow Comments') ?></label></p>
305 <p><label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php _e('Allow Pings') ?></label></p>
306 <p><?php _e('These settings apply to this post only. &#8220;Pings&#8221; are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p>
307 </div>
308 </div>
309
310 <div id="passworddiv" class="postbox <?php echo postbox_classes('passworddiv', 'post'); ?>">
311 <h3><?php _e('Password Protect This Post') ?></h3>
312 <div class="inside">
313 <p><input name="post_password" type="text" size="25" id="post_password" value="<?php echo attribute_escape( $post->post_password ); ?>" /></p>
314 <p><?php _e('Setting a password will require people who visit your blog to enter the above password to view this post and its comments.'); ?></p>
315 </div>
316 </div>
317
318 <div id="slugdiv" class="postbox <?php echo postbox_classes('slugdiv', 'post'); ?>">
319 <h3><?php _e('Post Slug') ?></h3>
320 <div class="inside">
321 <input name="post_name" type="text" size="13" id="post_name" value="<?php echo attribute_escape( $post->post_name ); ?>" />
322 </div>
323 </div>
324
325 <?php
326 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM
327 if ( $post->post_author && !in_array($post->post_author, $authors) )
328         $authors[] = $post->post_author;
329 if ( $authors && count( $authors ) > 1 ) :
330 ?>
331 <div id="authordiv" class="postbox <?php echo postbox_classes('authordiv', 'post'); ?>">
332 <h3><?php _e('Post Author'); ?></h3>
333 <div class="inside">
334 <?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post_ID) ? $user_ID : $post->post_author) ); ?>
335 </div>
336 </div>
337 <?php endif; ?>
338
339 <?php do_meta_boxes('post', 'advanced', $post); ?>
340
341 <?php do_action('dbx_post_sidebar'); ?>
342 </div>
343 </div>
344
345 </div>
346
347 </form>
348
349 <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>
350 <script type="text/javascript">
351 try{document.post.title.focus();}catch(e){}
352 </script>
353 <?php endif; ?>