]> scripts.mit.edu Git - autoinstallsdev/wordpress.git/blob - wp-admin/edit-page-form.php
eb58d20c268ee9d2d8f46539c6ed689d10c27887
[autoinstallsdev/wordpress.git] / wp-admin / edit-page-form.php
1 <?php
2 if ( isset($_GET['message']) )
3         $_GET['message'] = absint( $_GET['message'] );
4 $messages[1] = sprintf( __( 'Page updated. Continue editing below or <a href="%s">go back</a>.' ), attribute_escape( stripslashes( $_GET['_wp_original_http_referer'] ) ) );
5 $messages[2] = __('Custom field updated.');
6 $messages[3] = __('Custom field deleted.');
7 $messages[4] = __('Page updated.');
8
9 if ( isset($_GET['revision']) )
10         $messages[5] = sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );
11
12 $notice = false;
13 $notices[1] = __( 'There is an autosave of this page that is more recent than the version below.  <a href="%s">View the autosave</a>.' );
14
15 if (!isset($post_ID) || 0 == $post_ID) {
16         $form_action = 'post';
17         $nonce_action = 'add-page';
18         $temp_ID = -1 * time(); // don't change this formula without looking at wp_write_post()
19         $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
20 } else {
21         $post_ID = (int) $post_ID;
22         $form_action = 'editpost';
23         $nonce_action = 'update-page_' . $post_ID;
24         $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
25         $autosave = wp_get_post_autosave( $post_id );
26         if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt ) > mysql2date( 'U', $post->post_modified_gmt ) )
27                 $notice = sprintf( $notices[1], get_edit_post_link( $autosave->ID ) );
28 }
29
30 $temp_ID = (int) $temp_ID;
31 $user_ID = (int) $user_ID;
32
33 ?>
34
35 <?php if ( $notice ) : ?>
36 <div id="notice" class="error"><p><?php echo $notice ?></p></div>
37 <?php endif; ?>
38 <?php if (isset($_GET['message'])) : ?>
39 <div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div>
40 <?php endif; ?>
41
42 <form name="post" action="page.php" method="post" id="post">
43 <div class="wrap">
44 <h2><?php _e('Write Page') ?></h2>
45
46 <?php
47 wp_nonce_field($nonce_action);
48
49 if (isset($mode) && 'bookmarklet' == $mode)
50         echo '<input type="hidden" name="mode" value="bookmarklet" />';
51 ?>
52 <input type="hidden" id="user-id" name="user_ID" value="<?php echo $user_ID ?>" />
53 <input type="hidden" id="hiddenaction" name="action" value='<?php echo $form_action ?>' />
54 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo $form_action ?>" />
55 <input type="hidden" id="post_author" name="post_author" value="<?php echo attribute_escape( $post->post_author ); ?>" />
56 <?php echo $form_extra ?>
57 <input type="hidden" id="post_type" name="post_type" value="<?php echo $post->post_type ?>" />
58 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo $post->post_status ?>" />
59 <input name="referredby" type="hidden" id="referredby" value="<?php echo clean_url(stripslashes(wp_get_referer())); ?>" />
60 <?php if ( 'draft' != $post->post_status ) wp_original_referer_field(true, 'previous'); ?>
61
62 <div id="poststuff">
63
64 <div class="submitbox" id="submitpage">
65
66 <div id="previewview">
67 <?php if ( 'publish' == $post->post_status ) { ?>
68 <a href="<?php echo clean_url(get_permalink($post->ID)); ?>" target="_blank"  tabindex="4"><?php _e('View this Page'); ?></a>
69 <?php } elseif ( 'edit' == $action ) { ?>
70 <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 Page'); ?></a>
71 <?php } ?>
72 </div>
73
74 <div class="inside">
75 <p><strong><label for='post_status'><?php _e('Publish Status') ?></label></strong></p>
76 <p>
77 <select name='post_status' tabindex='4' id='post_status'>
78 <?php // Show publish in dropdown if user can publish or if they can re-publish this page ('edit_published_pages')
79 // 'publish' option will be selected for published AND private posts (checkbox overrides dropdown)
80 if ( current_user_can('publish_pages') OR ( $post->post_status == 'publish' AND current_user_can('edit_page', $post->ID) ) ) : 
81 ?>
82 <option<?php selected( $post->post_status, 'publish' ); selected( $post->post_status, 'private' );?> value='publish'><?php _e('Published') ?></option>
83 <?php endif; ?>
84 <?php if ( 'future' == $post->post_status ) : ?>
85 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Pending') ?></option>
86 <?php endif; ?>
87 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option>
88 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Unpublished') ?></option>
89 </select>
90 </p>
91 <?php if ( current_user_can( 'publish_posts' ) ) : ?> 
92 <p id="private-checkbox"><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 page private') ?></label></p>
93 <?php endif; ?>
94
95 <?php
96 if ($post_ID) {
97         if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
98                 $stamp = __('Scheduled for:<br />%1$s at %2$s');
99         } else if ( 'publish' == $post->post_status ) { // already published
100                 $stamp = __('Published on:<br />%1$s at %2$s');
101         } else if ( '0000-00-00 00:00:00' == $post->post_date ) { // draft, 1 or more saves, no date specified
102                 $stamp = __('Publish immediately');
103         } else { // draft, 1 or more saves, date specified
104                 $stamp = __('Publish on:<br />%1$s at %2$s');
105         }
106         $date = mysql2date(get_option('date_format'), $post->post_date);
107         $time = mysql2date(get_option('time_format'), $post->post_date);
108 } else { // draft (no saves, and thus no date specified)
109         $stamp = __('Publish immediately');
110         $date = mysql2date(get_option('date_format'), current_time('mysql'));
111         $time = mysql2date(get_option('time_format'), current_time('mysql'));
112 }
113 ?>
114 <p class="curtime"><?php printf($stamp, $date, $time); ?>
115 &nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a></p>
116
117 <div id='timestampdiv' class='hide-if-js'><?php touch_time(($action == 'edit'),1,4); ?></div>
118
119 </div>
120
121 <p class="submit">
122 <input type="submit" name="save" class="button button-highlighted" value="<?php _e('Save'); ?>" tabindex="4" />
123 <?php
124 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post_ID ) {
125 ?>
126 <?php if ( current_user_can('publish_pages') ) : ?>
127         <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />
128 <?php else : ?>
129         <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />
130 <?php endif; ?>
131 <?php
132 }
133
134 if ( ('edit' == $action) && current_user_can('delete_page', $post_ID) )
135         echo "<a class='submitdelete' href='" . wp_nonce_url("page.php?action=delete&amp;post=$post_ID", 'delete-page_' . $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 page '%s'\n  'Cancel' to stop, 'OK' to delete."), $post->post_title )) . "') ) { return true;}return false;\">" . __('Delete&nbsp;page') . "</a>";
136 ?>
137 <br class="clear" />
138 <?php if ($post_ID): ?>
139 <?php if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
140         $last_user = get_userdata($last_id);
141         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));
142 } else {
143         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));
144 }
145 ?>
146 <br class="clear" />
147 <?php endif; ?>
148 <span id="autosave"></span>
149 <span id="wp-word-count"></span>
150 </p>
151
152 <div class="side-info">
153 <h5><?php _e('Related') ?></h5>
154
155 <ul>
156 <?php if ($post_ID): ?>
157 <li><a href="edit-pages.php?page_id=<?php echo $post_ID ?>"><?php _e('See Comments on this Page') ?></a></li>
158 <?php endif; ?>
159 <li><a href="edit-comments.php"><?php _e('Manage All Comments') ?></a></li>
160 <li><a href="edit-pages.php"><?php _e('Manage All Pages') ?></a></li>
161 <?php do_action('page_relatedlinks_list'); ?>
162 </ul>
163 </div>
164 <?php do_action('submitpage_box'); ?>
165 </div>
166
167 <div id="post-body">
168 <div id="titlediv">
169 <h3><label for="title"><?php _e('Title') ?></label></h3>
170 <div id="titlewrap">
171   <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo attribute_escape( $post->post_title ); ?>" id="title" autocomplete="off" />
172 </div>
173 <div class="inside">
174 <?php $sample_permalink_html = get_sample_permalink_html($post->ID); ?>
175         <div id="edit-slug-box">
176 <?php if ( ! empty($post->ID) && ! empty($sample_permalink_html) ) :
177         echo $sample_permalink_html;
178 endif; ?>
179         </div>
180 </div>
181 </div>
182
183 <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
184 <h3><label for="content"><?php _e('Page') ?></label></h3>
185 <?php the_editor($post->post_content); ?>
186 <?php wp_nonce_field( 'autosave', 'autosavenonce', false ); ?>
187 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
188 <?php wp_nonce_field( 'getpermalink', 'getpermalinknonce', false ); ?>
189 <?php wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false ); ?>
190 </div>
191
192 <?php do_meta_boxes('page', 'normal', $post); ?>
193
194 <?php do_action('edit_page_form'); ?>
195
196 <h2><?php _e('Advanced Options'); ?></h2>
197
198
199 <?php 
200 function page_custom_meta_box($post){
201 ?>
202 <div id="postcustomstuff">
203 <table cellpadding="3">
204 <?php
205 $metadata = has_meta($post->ID);
206 list_meta($metadata);
207 ?>
208
209 </table>
210 <?php
211         meta_form();
212 ?>
213 <div id="ajax-response"></div>
214 </div>
215 <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>
216 <?php
217 }
218 add_meta_box('pagecustomdiv', __('Custom Fields'), 'page_custom_meta_box', 'page', 'advanced', 'core');
219
220 function page_comments_status_meta_box($post){
221 ?>
222 <input name="advanced_view" type="hidden" value="1" />
223 <p><label for="comment_status" class="selectit">
224 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
225 <?php _e('Allow Comments') ?></label></p>
226 <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>
227 <p><?php _e('These settings apply to this page only. &#8220;Pings&#8221; are <a href="http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" target="_blank">trackbacks and pingbacks</a>.'); ?></p>
228 <?php 
229 }
230 add_meta_box('pagecommentstatusdiv', __('Comments &amp; Pings'), 'page_comments_status_meta_box', 'page', 'advanced', 'core');
231
232 function page_password_meta_box($post){
233 ?>
234 <p><label class="hidden" for="post_password"><?php _e('Password Protect This Page') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php echo attribute_escape( $post->post_password ); ?>" /></p>
235 <p><?php _e('Setting a password will require people who visit your blog to enter the above password to view this page and its comments.'); ?></p>
236 <?php
237 }
238 add_meta_box('pagepassworddiv', __('Password Protect This Page'), 'page_password_meta_box', 'page', 'advanced', 'core');
239
240 function page_slug_meta_box($post){
241 ?>
242 <label class="hidden" for="post_name"><?php _e('Page Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo attribute_escape( $post->post_name ); ?>" />
243 <?php
244 }
245 add_meta_box('pageslugdiv', __('Page Slug'), 'page_slug_meta_box', 'page', 'advanced', 'core');
246
247 function page_parent_meta_box($post){
248 ?>
249 <label class="hidden" for="parent_id"><?php _e('Page Parent') ?></label>
250 <select name="parent_id" id="parent_id">
251 <option value='0'><?php _e('Main Page (no parent)'); ?></option>
252 <?php parent_dropdown($post->post_parent); ?>
253 </select>
254 <p><?php _e('You can arrange your pages in hierarchies, for example you could have an &#8220;About&#8221; page that has &#8220;Life Story&#8221; and &#8220;My Dog&#8221; pages under it. There are no limits to how deeply nested you can make pages.'); ?></p>
255 <?php
256 }
257 add_meta_box('pageparentdiv', __('Page Parent'), 'page_parent_meta_box', 'page', 'advanced', 'core');
258
259 if ( 0 != count( get_page_templates() ) ) {
260         function page_template_meta_box($post){
261 ?>
262 <label class="hidden" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template">
263 <option value='default'><?php _e('Default Template'); ?></option>
264 <?php page_template_dropdown($post->page_template); ?>
265 </select>
266 <p><?php _e('Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you&#8217;ll see them above.'); ?></p>
267 <?php
268         }
269         add_meta_box('pagetemplatediv', __('Page Template'), 'page_template_meta_box', 'page', 'advanced', 'core');
270 }
271
272 function page_order_meta_box($post){
273 ?>
274 <p><label class="hidden" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo $post->menu_order ?>" /></p>
275 <p><?php _e('Pages are usually ordered alphabetically, but you can put a number above to change the order pages appear in. (We know this is a little janky, it&#8217;ll be better in future releases.)'); ?></p>
276 <?php
277 }
278 add_meta_box('pageorderdiv', __('Page Order'), 'page_order_meta_box', 'page', 'advanced', 'core');
279
280
281 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM
282 if ( $post->post_author && !in_array($post->post_author, $authors) )
283         $authors[] = $post->post_author;
284 if ( $authors && count( $authors ) > 1 ) {
285         function page_author_meta_box($post){
286                 global $current_user, $user_ID;
287                 $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM
288                 if ( $post->post_author && !in_array($post->post_author, $authors) )
289                         $authors[] = $post->post_author;
290 ?>
291 <label class="hidden" for="post_author_override"><?php _e('Page Author'); ?></label><?php wp_dropdown_users( array('include' => $authors, 'name' => 'post_author_override', 'selected' => empty($post->ID) ? $user_ID : $post->post_author) ); ?>
292 <?php
293         }
294         add_meta_box('pageauthordiv', __('Page Author'), 'page_author_meta_box', 'page', 'advanced', 'core');
295 }
296
297
298 if ( isset($post_ID) && 0 < $post_ID && wp_get_post_revisions( $post_ID ) ) :
299 function page_revisions_meta_box($post) {
300         wp_list_post_revisions();
301 }
302 add_meta_box('revisionsdiv', __('Page Revisions'), 'page_revisions_meta_box', 'page', 'advanced', 'core');
303 endif;
304
305 do_meta_boxes('page', 'advanced', $post);
306 ?>
307
308 </div>
309 </div>
310
311 </div>
312
313 </form>
314
315 <script type="text/javascript">
316 try{document.post.title.focus();}catch(e){}
317 </script>