web/wp-admin/edit-page-form.php
branchwordpress
changeset 109 03b0d1493584
child 132 4d4862461b8d
equal deleted inserted replaced
-1:000000000000 109:03b0d1493584
       
     1 <?php
       
     2 /**
       
     3  * Edit page form for inclusion in the administration panels.
       
     4  *
       
     5  * @package WordPress
       
     6  * @subpackage Administration
       
     7  */
       
     8 
       
     9 // don't load directly
       
    10 if ( !defined('ABSPATH') )
       
    11 	die('-1');
       
    12 
       
    13 /**
       
    14  * Post ID global.
       
    15  * @name $post_ID
       
    16  * @var int
       
    17  */
       
    18 if ( ! isset( $post_ID ) )
       
    19 	$post_ID = 0;
       
    20 if ( ! isset( $temp_ID ) )
       
    21 	$temp_ID = 0;
       
    22 
       
    23 if ( isset($_GET['message']) )
       
    24 	$_GET['message'] = absint( $_GET['message'] );
       
    25 $messages[1] = sprintf(__('Page updated. <a href="%s">View page</a>'), get_permalink($post_ID));
       
    26 $messages[2] = __('Custom field updated.');
       
    27 $messages[3] = __('Custom field deleted.');
       
    28 $messages[5] = sprintf(__('Page published. <a href="%s">View page</a>'), get_permalink($post_ID));
       
    29 $messages[6] = sprintf(__('Page submitted. <a href="%s">Preview page</a>'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
       
    30 
       
    31 if ( isset($_GET['revision']) )
       
    32 	$messages[5] = sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );
       
    33 
       
    34 $notice = false;
       
    35 $notices[1] = __( 'There is an autosave of this page that is more recent than the version below.  <a href="%s">View the autosave</a>.' );
       
    36 
       
    37 if ( 0 == $post_ID) {
       
    38 	$form_action = 'post';
       
    39 	$nonce_action = 'add-page';
       
    40 	$temp_ID = -1 * time(); // don't change this formula without looking at wp_write_post()
       
    41 	$form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
       
    42 } else {
       
    43 	$post_ID = (int) $post_ID;
       
    44 	$form_action = 'editpost';
       
    45 	$nonce_action = 'update-page_' . $post_ID;
       
    46 	$form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
       
    47 	$autosave = wp_get_post_autosave( $post_ID );
       
    48 	if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) )
       
    49 		$notice = sprintf( $notices[1], get_edit_post_link( $autosave->ID ) );
       
    50 }
       
    51 
       
    52 $temp_ID = (int) $temp_ID;
       
    53 $user_ID = (int) $user_ID;
       
    54 
       
    55 /**
       
    56  * Display submit form fields.
       
    57  *
       
    58  * @since 2.7.0
       
    59  *
       
    60  * @param object $post
       
    61  */
       
    62 function page_submit_meta_box($post) {
       
    63 	global $action;
       
    64 
       
    65 	$can_publish = current_user_can('publish_pages');
       
    66 ?>
       
    67 <div class="submitbox" id="submitpage">
       
    68 
       
    69 <div id="minor-publishing">
       
    70 
       
    71 <?php // Hidden submit button early on so that the browser chooses the right button when form is submitted with Return key ?>
       
    72 <div style="display:none;">
       
    73 <input type="submit" name="save" value="<?php esc_attr_e('Save'); ?>" />
       
    74 </div>
       
    75 
       
    76 <div id="minor-publishing-actions">
       
    77 <div id="save-action">
       
    78 <?php if ( 'publish' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status )  { ?>
       
    79 <input <?php if ( 'private' == $post->post_status ) { ?>style="display:none"<?php } ?> type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save Draft'); ?>" tabindex="4" class="button button-highlighted" />
       
    80 <?php } elseif ( 'pending' == $post->post_status && $can_publish ) { ?>
       
    81 <input type="submit" name="save" id="save-post" value="<?php esc_attr_e('Save as Pending'); ?>" tabindex="4" class="button button-highlighted" />
       
    82 <?php } ?>
       
    83 </div>
       
    84 
       
    85 <div id="preview-action">
       
    86 <?php
       
    87 if ( 'publish' == $post->post_status ) {
       
    88 	$preview_link = esc_url(get_permalink($post->ID));
       
    89 	$preview_button = __('Preview Changes');
       
    90 } else {
       
    91 	$preview_link = esc_url(apply_filters('preview_post_link', add_query_arg('preview', 'true', get_permalink($post->ID))));
       
    92 	$preview_button = __('Preview');
       
    93 }
       
    94 ?>
       
    95 <a class="preview button" href="<?php echo $preview_link; ?>" target="wp-preview" id="post-preview" tabindex="4"><?php echo $preview_button; ?></a>
       
    96 <input type="hidden" name="wp-preview" id="wp-preview" value="" />
       
    97 </div>
       
    98 
       
    99 <div class="clear"></div>
       
   100 </div><?php // /minor-publishing-actions ?>
       
   101 
       
   102 <div id="misc-publishing-actions">
       
   103 
       
   104 <div class="misc-pub-section<?php if ( !$can_publish ) { echo ' misc-pub-section-last'; } ?>"><label for="post_status"><?php _e('Status:') ?></label>
       
   105 <span id="post-status-display">
       
   106 <?php
       
   107 switch ( $post->post_status ) {
       
   108 	case 'private':
       
   109 		_e('Privately Published');
       
   110 		break;
       
   111 	case 'publish':
       
   112 		_e('Published');
       
   113 		break;
       
   114 	case 'future':
       
   115 		_e('Scheduled');
       
   116 		break;
       
   117 	case 'pending':
       
   118 		_e('Pending Review');
       
   119 		break;
       
   120 	case 'draft':
       
   121 		_e('Draft');
       
   122 		break;
       
   123 }
       
   124 ?>
       
   125 </span>
       
   126 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?>
       
   127 <a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
       
   128 
       
   129 <div id="post-status-select" class="hide-if-js">
       
   130 <input type="hidden" name="hidden_post_status" id="hidden_post_status" value="<?php echo esc_attr($post->post_status); ?>" />
       
   131 <select name='post_status' id='post_status' tabindex='4'>
       
   132 <?php if ( 'publish' == $post->post_status ) : ?>
       
   133 <option<?php selected( $post->post_status, 'publish' ); ?> value='publish'><?php _e('Published') ?></option>
       
   134 <?php elseif ( 'private' == $post->post_status ) : ?>
       
   135 <option<?php selected( $post->post_status, 'private' ); ?> value='publish'><?php _e('Privately Published') ?></option>
       
   136 <?php elseif ( 'future' == $post->post_status ) : ?>
       
   137 <option<?php selected( $post->post_status, 'future' ); ?> value='future'><?php _e('Scheduled') ?></option>
       
   138 <?php endif; ?>
       
   139 <option<?php selected( $post->post_status, 'pending' ); ?> value='pending'><?php _e('Pending Review') ?></option>
       
   140 <option<?php selected( $post->post_status, 'draft' ); ?> value='draft'><?php _e('Draft') ?></option>
       
   141 </select>
       
   142 
       
   143  <a href="#post_status" class="save-post-status hide-if-no-js button"><?php _e('OK'); ?></a>
       
   144  <a href="#post_status" class="cancel-post-status hide-if-no-js"><?php _e('Cancel'); ?></a>
       
   145 </div>
       
   146 
       
   147 <?php } ?>
       
   148 </div><?php // /misc-pub-section ?>
       
   149 
       
   150 <div class="misc-pub-section " id="visibility">
       
   151 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php
       
   152 
       
   153 if ( 'private' == $post->post_status ) {
       
   154 	$post->post_password = '';
       
   155 	$visibility = 'private';
       
   156 	$visibility_trans = __('Private');
       
   157 } elseif ( !empty( $post->post_password ) ) {
       
   158 	$visibility = 'password';
       
   159 	$visibility_trans = __('Password protected');
       
   160 } else {
       
   161 	$visibility = 'public';
       
   162 	$visibility_trans = __('Public');
       
   163 }
       
   164 
       
   165 echo esc_html( $visibility_trans ); ?></span>
       
   166 <?php if ( $can_publish ) { ?>
       
   167 <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a>
       
   168 
       
   169 <div id="post-visibility-select" class="hide-if-js">
       
   170 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo esc_attr($post->post_password); ?>" />
       
   171 <input type="hidden" name="hidden_post_visibility" id="hidden-post-visibility" value="<?php echo esc_attr( $visibility ); ?>" />
       
   172 
       
   173 <input type="radio" name="visibility" id="visibility-radio-public" value="public" <?php checked( $visibility, 'public' ); ?> /> <label for="visibility-radio-public" class="selectit"><?php _e('Public'); ?></label><br />
       
   174 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br />
       
   175 <span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>" /><br /></span>
       
   176 <input type="radio" name="visibility" id="visibility-radio-private" value="private" <?php checked( $visibility, 'private' ); ?> /> <label for="visibility-radio-private" class="selectit"><?php _e('Private'); ?></label><br />
       
   177 
       
   178 <p><a href="#visibility" class="save-post-visibility hide-if-no-js button"><?php _e('OK'); ?></a>
       
   179 <a href="#visibility" class="cancel-post-visibility hide-if-no-js"><?php _e('Cancel'); ?></a></p>
       
   180 </div>
       
   181 <?php } ?>
       
   182 
       
   183 </div><?php // /misc-pub-section ?>
       
   184 
       
   185 <?php
       
   186 // translators: Publish box date formt, see http://php.net/date
       
   187 $datef = __( 'M j, Y @ G:i' );
       
   188 if ( 0 != $post->ID ) {
       
   189 	if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
       
   190 		$stamp = __('Scheduled for: <b>%1$s</b>');
       
   191 	} else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
       
   192 		$stamp = __('Published on: <b>%1$s</b>');
       
   193 	} else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
       
   194 		$stamp = __('Publish <b>immediately</b>');
       
   195 	} else if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) { // draft, 1 or more saves, future date specified
       
   196 		$stamp = __('Schedule for: <b>%1$s</b>');
       
   197 	} else { // draft, 1 or more saves, date specified
       
   198 		$stamp = __('Publish on: <b>%1$s</b>');
       
   199 	}
       
   200 	$date = date_i18n( $datef, strtotime( $post->post_date ) );
       
   201 } else { // draft (no saves, and thus no date specified)
       
   202 	$stamp = __('Publish <b>immediately</b>');
       
   203 	$date = date_i18n( $datef, strtotime( current_time('mysql') ) );
       
   204 }
       
   205 
       
   206 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?>
       
   207 <div class="misc-pub-section curtime misc-pub-section-last">
       
   208 	<span id="timestamp"><?php printf($stamp, $date); ?></span>
       
   209 	<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
       
   210 	<div id="timestampdiv" class="hide-if-js"><?php touch_time(($action == 'edit'),1,4); ?></div>
       
   211 </div><?php // /misc-pub-section
       
   212 endif; ?>
       
   213 
       
   214 </div>
       
   215 <div class="clear"></div>
       
   216 </div>
       
   217 
       
   218 <div id="major-publishing-actions">
       
   219 <?php do_action('post_submitbox_start'); ?>
       
   220 <div id="delete-action">
       
   221 <?php
       
   222 if ( ( 'edit' == $action ) && current_user_can('delete_page', $post->ID) ) { ?>
       
   223 <a class="submitdelete deletion" href="<?php echo wp_nonce_url("page.php?action=delete&amp;post=$post->ID", 'delete-page_' . $post->ID); ?>" onclick="if ( confirm('<?php echo esc_js(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;"><?php _e('Delete'); ?></a>
       
   224 <?php } ?>
       
   225 </div>
       
   226 
       
   227 <div id="publishing-action">
       
   228 <?php
       
   229 if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) { ?>
       
   230 <?php
       
   231 	if ( $can_publish ) :
       
   232 		if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?>
       
   233 		<input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" />
       
   234 		<input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php esc_attr_e('Schedule') ?>" />
       
   235 <?php	else : ?>
       
   236 		<input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" />
       
   237 		<input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php esc_attr_e('Publish') ?>" />
       
   238 <?php	endif;
       
   239 	else : ?>
       
   240 	<input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" />
       
   241 	<input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php esc_attr_e('Submit for Review') ?>" />
       
   242 <?php
       
   243 	endif;
       
   244 } else { ?>
       
   245 	<input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update Page') ?>" />
       
   246 	<input name="save" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php esc_attr_e('Update Page') ?>" />
       
   247 <?php
       
   248 } ?>
       
   249 </div>
       
   250 <div class="clear"></div>
       
   251 </div>
       
   252 </div>
       
   253 <?php
       
   254 }
       
   255 add_meta_box('pagesubmitdiv', __('Publish'), 'page_submit_meta_box', 'page', 'side', 'core');
       
   256 
       
   257 /**
       
   258  * Display page password form fields.
       
   259  *
       
   260  * @since 2.6.0
       
   261  *
       
   262  * @param object $post
       
   263  */
       
   264 function page_password_meta_box($post){
       
   265 ?>
       
   266 <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 page private') ?></label></p>
       
   267 <h4><?php _e( 'Page Password' ); ?></h4>
       
   268 <p><label class="screen-reader-text" for="post_password"><?php _e('Password Protect This Page') ?></label><input name="post_password" type="text" size="25" id="post_password" value="<?php the_post_password(); ?>" /></p>
       
   269 <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>
       
   270 <?php
       
   271 }
       
   272 // add_meta_box('pagepassworddiv', __('Privacy Options'), 'page_password_meta_box', 'page', 'side', 'core');
       
   273 
       
   274 /**
       
   275  * Display page attributes form fields.
       
   276  *
       
   277  * @since 2.7.0
       
   278  *
       
   279  * @param object $post
       
   280  */
       
   281 function page_attributes_meta_box($post){
       
   282 ?>
       
   283 <h5><?php _e('Parent') ?></h5>
       
   284 <label class="screen-reader-text" for="parent_id"><?php _e('Page Parent') ?></label>
       
   285 <?php wp_dropdown_pages(array('exclude_tree' => $post->ID, 'selected' => $post->post_parent, 'name' => 'parent_id', 'show_option_none' => __('Main Page (no parent)'), 'sort_column'=> 'menu_order, post_title')); ?>
       
   286 <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>
       
   287 <?php
       
   288 	if ( 0 != count( get_page_templates() ) ) { ?>
       
   289 <h5><?php _e('Template') ?></h5>
       
   290 <label class="screen-reader-text" for="page_template"><?php _e('Page Template') ?></label><select name="page_template" id="page_template">
       
   291 <option value='default'><?php _e('Default Template'); ?></option>
       
   292 <?php page_template_dropdown($post->page_template); ?>
       
   293 </select>
       
   294 <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>
       
   295 <?php
       
   296 	} ?>
       
   297 <h5><?php _e('Order') ?></h5>
       
   298 <p><label class="screen-reader-text" for="menu_order"><?php _e('Page Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p>
       
   299 <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>
       
   300 <?php
       
   301 }
       
   302 add_meta_box('pageparentdiv', __('Attributes'), 'page_attributes_meta_box', 'page', 'side', 'core');
       
   303 
       
   304 /**
       
   305  * Display custom field for page form fields.
       
   306  *
       
   307  * @since 2.6.0
       
   308  *
       
   309  * @param object $post
       
   310  */
       
   311 function page_custom_meta_box($post){
       
   312 ?>
       
   313 <div id="postcustomstuff">
       
   314 <?php
       
   315 	$metadata = has_meta($post->ID);
       
   316 	list_meta($metadata);
       
   317 	meta_form(); ?>
       
   318 	<div id="ajax-response"></div>
       
   319 </div>
       
   320 <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>
       
   321 <?php
       
   322 }
       
   323 add_meta_box('pagecustomdiv', __('Custom Fields'), 'page_custom_meta_box', 'page', 'normal', 'core');
       
   324 
       
   325 /**
       
   326  * Display comments status form fields.
       
   327  *
       
   328  * @since 2.6.0
       
   329  *
       
   330  * @param object $post
       
   331  */
       
   332 function page_comments_status_meta_box($post){
       
   333 ?>
       
   334 <input name="advanced_view" type="hidden" value="1" />
       
   335 <p><label for="comment_status" class="selectit">
       
   336 <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
       
   337 <?php _e('Allow Comments') ?></label></p>
       
   338 <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>
       
   339 <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>
       
   340 <?php
       
   341 }
       
   342 add_meta_box('pagecommentstatusdiv', __('Discussion'), 'page_comments_status_meta_box', 'page', 'normal', 'core');
       
   343 
       
   344 /**
       
   345  * Display page slug form fields.
       
   346  *
       
   347  * @since 2.6.0
       
   348  *
       
   349  * @param object $post
       
   350  */
       
   351 function page_slug_meta_box($post){
       
   352 ?>
       
   353 <label class="screen-reader-text" for="post_name"><?php _e('Page Slug') ?></label><input name="post_name" type="text" size="13" id="post_name" value="<?php echo esc_attr( $post->post_name ); ?>" />
       
   354 <?php
       
   355 }
       
   356 add_meta_box('pageslugdiv', __('Page Slug'), 'page_slug_meta_box', 'page', 'normal', 'core');
       
   357 
       
   358 $authors = get_editable_user_ids( $current_user->id, true, 'page' ); // TODO: ROLE SYSTEM
       
   359 if ( $post->post_author && !in_array($post->post_author, $authors) )
       
   360 	$authors[] = $post->post_author;
       
   361 if ( $authors && count( $authors ) > 1 ) {
       
   362 	/**
       
   363 	 * Display page author form fields, when more than one author exists.
       
   364 	 *
       
   365 	 * @since 2.6.0
       
   366 	 *
       
   367 	 * @param object $post
       
   368 	 */
       
   369 	function page_author_meta_box($post){
       
   370 		global $current_user, $user_ID;
       
   371 		$authors = get_editable_user_ids( $current_user->id, true, 'page' ); // TODO: ROLE SYSTEM
       
   372 		if ( $post->post_author && !in_array($post->post_author, $authors) )
       
   373 			$authors[] = $post->post_author;
       
   374 ?>
       
   375 <label class="screen-reader-text" 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) ); ?>
       
   376 <?php
       
   377 	}
       
   378 	add_meta_box('pageauthordiv', __('Page Author'), 'page_author_meta_box', 'page', 'normal', 'core');
       
   379 }
       
   380 
       
   381 if ( 0 < $post_ID && wp_get_post_revisions( $post_ID ) ) :
       
   382 /**
       
   383  * Display list of page revisions.
       
   384  *
       
   385  * @since 2.6.0
       
   386  *
       
   387  * @param object $post
       
   388  */
       
   389 function page_revisions_meta_box($post) {
       
   390 	wp_list_post_revisions();
       
   391 }
       
   392 add_meta_box('revisionsdiv', __('Page Revisions'), 'page_revisions_meta_box', 'page', 'normal', 'core');
       
   393 endif;
       
   394 
       
   395 do_action('do_meta_boxes', 'page', 'normal', $post);
       
   396 do_action('do_meta_boxes', 'page', 'advanced', $post);
       
   397 do_action('do_meta_boxes', 'page', 'side', $post);
       
   398 
       
   399 require_once('admin-header.php');
       
   400 ?>
       
   401 
       
   402 <div class="wrap">
       
   403 <?php screen_icon(); ?>
       
   404 <h2><?php echo esc_html( $title ); ?></h2>
       
   405 
       
   406 <form name="post" action="page.php" method="post" id="post">
       
   407 <?php if ( $notice ) : ?>
       
   408 <div id="notice" class="error"><p><?php echo $notice ?></p></div>
       
   409 <?php endif; ?>
       
   410 <?php if (isset($_GET['message'])) : ?>
       
   411 <div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div>
       
   412 <?php endif; ?>
       
   413 
       
   414 <?php
       
   415 wp_nonce_field($nonce_action);
       
   416 
       
   417 if (isset($mode) && 'bookmarklet' == $mode)
       
   418 	echo '<input type="hidden" name="mode" value="bookmarklet" />';
       
   419 ?>
       
   420 <input type="hidden" id="user-id" name="user_ID" value="<?php echo $user_ID ?>" />
       
   421 <input type="hidden" id="hiddenaction" name="action" value='<?php echo esc_attr($form_action) ?>' />
       
   422 <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr($form_action) ?>" />
       
   423 <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
       
   424 <?php echo $form_extra ?>
       
   425 <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr($post->post_type) ?>" />
       
   426 <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr($post->post_status) ?>" />
       
   427 <input name="referredby" type="hidden" id="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
       
   428 <?php if ( 'draft' != $post->post_status ) wp_original_referer_field(true, 'previous'); ?>
       
   429 
       
   430 <div id="poststuff" class="metabox-holder<?php echo 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
       
   431 
       
   432 <div id="side-info-column" class="inner-sidebar">
       
   433 <?php
       
   434 do_action('submitpage_box');
       
   435 $side_meta_boxes = do_meta_boxes('page', 'side', $post); ?>
       
   436 </div>
       
   437 
       
   438 <div id="post-body">
       
   439 <div id="post-body-content">
       
   440 <div id="titlediv">
       
   441 <div id="titlewrap">
       
   442 	<label class="screen-reader-text" for="title"><?php _e('Title') ?></label>
       
   443 	<input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
       
   444 </div>
       
   445 <div class="inside">
       
   446 <?php $sample_permalink_html = get_sample_permalink_html($post->ID); ?>
       
   447 	<div id="edit-slug-box">
       
   448 <?php if ( ! empty($post->ID) && ! empty($sample_permalink_html) ) :
       
   449 	echo $sample_permalink_html;
       
   450 endif; ?>
       
   451 	</div>
       
   452 </div>
       
   453 </div>
       
   454 
       
   455 <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
       
   456 
       
   457 <?php the_editor($post->post_content); ?>
       
   458 <table id="post-status-info" cellspacing="0"><tbody><tr>
       
   459 	<td id="wp-word-count"></td>
       
   460 	<td class="autosave-info">
       
   461 	<span id="autosave">&nbsp;</span>
       
   462 
       
   463 <?php
       
   464 	if ($post_ID) {
       
   465 		if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
       
   466 			$last_user = get_userdata($last_id);
       
   467 			printf(__('Last edited by %1$s on %2$s at %3$s'), esc_html( $last_user->display_name ), mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified));
       
   468 		} else {
       
   469 			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));
       
   470 		}
       
   471 	}
       
   472 ?>
       
   473 	</td>
       
   474 </tr></tbody></table>
       
   475 
       
   476 <?php
       
   477 wp_nonce_field( 'autosave', 'autosavenonce', false );
       
   478 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
       
   479 wp_nonce_field( 'getpermalink', 'getpermalinknonce', false );
       
   480 wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
       
   481 wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?>
       
   482 </div>
       
   483 
       
   484 <?php
       
   485 do_meta_boxes('page', 'normal', $post);
       
   486 do_action('edit_page_form');
       
   487 do_meta_boxes('page', 'advanced', $post);
       
   488 ?>
       
   489 
       
   490 </div>
       
   491 </div>
       
   492 </div>
       
   493 
       
   494 </form>
       
   495 </div>
       
   496 
       
   497 <script type="text/javascript">
       
   498 try{document.post.title.focus();}catch(e){}
       
   499 </script>