PageRenderTime 61ms CodeModel.GetById 33ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/edit-form-advanced.php

https://bitbucket.org/space87/wordpressstart
PHP | 385 lines | 299 code | 69 blank | 17 comment | 81 complexity | 10d03a9134ff1d690e838b8f01a361de MD5 | raw file
  1. <?php
  2. /**
  3. * Post advanced form for inclusion in the administration panels.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. // don't load directly
  9. if ( !defined('ABSPATH') )
  10. die('-1');
  11. wp_enqueue_script('post');
  12. if ( wp_is_mobile() )
  13. wp_enqueue_script( 'jquery-touch-punch' );
  14. if ( post_type_supports($post_type, 'editor') || post_type_supports($post_type, 'thumbnail') ) {
  15. add_thickbox();
  16. wp_enqueue_script('media-upload');
  17. }
  18. /**
  19. * Post ID global
  20. * @name $post_ID
  21. * @var int
  22. */
  23. $post_ID = isset($post_ID) ? (int) $post_ID : 0;
  24. $user_ID = isset($user_ID) ? (int) $user_ID : 0;
  25. $action = isset($action) ? $action : '';
  26. $messages = array();
  27. $messages['post'] = array(
  28. 0 => '', // Unused. Messages start at index 1.
  29. 1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
  30. 2 => __('Custom field updated.'),
  31. 3 => __('Custom field deleted.'),
  32. 4 => __('Post updated.'),
  33. /* translators: %s: date and time of the revision */
  34. 5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
  35. 6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
  36. 7 => __('Post saved.'),
  37. 8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  38. 9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
  39. // translators: Publish box date format, see http://php.net/date
  40. date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
  41. 10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  42. );
  43. $messages['page'] = array(
  44. 0 => '', // Unused. Messages start at index 1.
  45. 1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
  46. 2 => __('Custom field updated.'),
  47. 3 => __('Custom field deleted.'),
  48. 4 => __('Page updated.'),
  49. 5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
  50. 6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
  51. 7 => __('Page saved.'),
  52. 8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  53. 9 => sprintf( __('Page scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview page</a>'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
  54. 10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  55. );
  56. $messages = apply_filters( 'post_updated_messages', $messages );
  57. $message = false;
  58. if ( isset($_GET['message']) ) {
  59. $_GET['message'] = absint( $_GET['message'] );
  60. if ( isset($messages[$post_type][$_GET['message']]) )
  61. $message = $messages[$post_type][$_GET['message']];
  62. elseif ( !isset($messages[$post_type]) && isset($messages['post'][$_GET['message']]) )
  63. $message = $messages['post'][$_GET['message']];
  64. }
  65. $notice = false;
  66. $form_extra = '';
  67. if ( 'auto-draft' == $post->post_status ) {
  68. if ( 'edit' == $action )
  69. $post->post_title = '';
  70. $autosave = false;
  71. $form_extra .= "<input type='hidden' id='auto_draft' name='auto_draft' value='1' />";
  72. } else {
  73. $autosave = wp_get_post_autosave( $post_ID );
  74. }
  75. $form_action = 'editpost';
  76. $nonce_action = 'update-' . $post_type . '_' . $post_ID;
  77. $form_extra .= "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
  78. // Detect if there exists an autosave newer than the post and if that autosave is different than the post
  79. if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
  80. foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
  81. if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
  82. $notice = sprintf( __( 'There is an autosave of this post that is more recent than the version below. <a href="%s">View the autosave</a>' ), get_edit_post_link( $autosave->ID ) );
  83. break;
  84. }
  85. }
  86. unset($autosave_field, $_autosave_field);
  87. }
  88. $post_type_object = get_post_type_object($post_type);
  89. // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
  90. require_once('./includes/meta-boxes.php');
  91. add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', null, 'side', 'core');
  92. if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post_type, 'post-formats' ) )
  93. add_meta_box( 'formatdiv', _x( 'Format', 'post format' ), 'post_format_meta_box', null, 'side', 'core' );
  94. // all taxonomies
  95. foreach ( get_object_taxonomies($post_type) as $tax_name ) {
  96. $taxonomy = get_taxonomy($tax_name);
  97. if ( ! $taxonomy->show_ui )
  98. continue;
  99. $label = $taxonomy->labels->name;
  100. if ( !is_taxonomy_hierarchical($tax_name) )
  101. add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', null, 'side', 'core', array( 'taxonomy' => $tax_name ));
  102. else
  103. add_meta_box($tax_name . 'div', $label, 'post_categories_meta_box', null, 'side', 'core', array( 'taxonomy' => $tax_name ));
  104. }
  105. if ( post_type_supports($post_type, 'page-attributes') )
  106. add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', null, 'side', 'core');
  107. if ( current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' ) )
  108. add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', null, 'side', 'low');
  109. if ( post_type_supports($post_type, 'excerpt') )
  110. add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', null, 'normal', 'core');
  111. if ( post_type_supports($post_type, 'trackbacks') )
  112. add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', null, 'normal', 'core');
  113. if ( post_type_supports($post_type, 'custom-fields') )
  114. add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', null, 'normal', 'core');
  115. do_action('dbx_post_advanced');
  116. if ( post_type_supports($post_type, 'comments') )
  117. add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', null, 'normal', 'core');
  118. if ( ('publish' == $post->post_status || 'private' == $post->post_status) && post_type_supports($post_type, 'comments') )
  119. add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', null, 'normal', 'core');
  120. if ( !( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) )
  121. add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', null, 'normal', 'core');
  122. if ( post_type_supports($post_type, 'author') ) {
  123. if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) )
  124. add_meta_box('authordiv', __('Author'), 'post_author_meta_box', null, 'normal', 'core');
  125. }
  126. if ( post_type_supports($post_type, 'revisions') && 0 < $post_ID && wp_get_post_revisions( $post_ID ) )
  127. add_meta_box('revisionsdiv', __('Revisions'), 'post_revisions_meta_box', null, 'normal', 'core');
  128. do_action('add_meta_boxes', $post_type, $post);
  129. do_action('add_meta_boxes_' . $post_type, $post);
  130. do_action('do_meta_boxes', $post_type, 'normal', $post);
  131. do_action('do_meta_boxes', $post_type, 'advanced', $post);
  132. do_action('do_meta_boxes', $post_type, 'side', $post);
  133. add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
  134. if ( 'post' == $post_type ) {
  135. $customize_display = '<p>' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop, and can minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.') . '</p>';
  136. get_current_screen()->add_help_tab( array(
  137. 'id' => 'customize-display',
  138. 'title' => __('Customizing This Display'),
  139. 'content' => $customize_display,
  140. ) );
  141. $title_and_editor = '<p>' . __('<strong>Title</strong> - Enter a title for your post. After you enter a title, you&#8217;ll see the permalink below, which you can edit.') . '</p>';
  142. $title_and_editor .= '<p>' . __('<strong>Post editor</strong> - Enter the text for your post. There are two modes of editing: Visual and HTML. Choose the mode by clicking on the appropriate tab. Visual mode gives you a WYSIWYG editor. Click the last icon in the row to get a second row of controls. The HTML mode allows you to enter raw HTML along with your post text. You can insert media files by clicking the icons above the post editor and following the directions. You can go to the distraction-free writing screen via the Fullscreen icon in Visual mode (second to last in the top row) or the Fullscreen button in HTML mode (last in the row). Once there, you can make buttons visible by hovering over the top area. Exit Fullscreen back to the regular post editor.') . '</p>';
  143. get_current_screen()->add_help_tab( array(
  144. 'id' => 'title-post-editor',
  145. 'title' => __('Title and Post Editor'),
  146. 'content' => $title_and_editor,
  147. ) );
  148. $publish_box = '<p>' . __('<strong>Publish</strong> - You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.') . '</p>';
  149. if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
  150. $publish_box .= '<p>' . __( '<strong>Post Format</strong> - This designates how your theme will display a specific post. For example, you could have a <em>standard</em> blog post with a title and paragraphs, or a short <em>aside</em> that omits the title and contains a short text blurb. Please refer to the Codex for <a href="http://codex.wordpress.org/Post_Formats#Supported_Formats">descriptions of each post format</a>. Your theme could enable all or some of 10 possible formats.' ) . '</p>';
  151. }
  152. if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( 'post', 'thumbnail' ) ) {
  153. $publish_box .= '<p>' . __('<strong>Featured Image</strong> - This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the featured image as a post thumbnail on the home page, a custom header, etc.') . '</p>';
  154. }
  155. get_current_screen()->add_help_tab( array(
  156. 'id' => 'publish-box',
  157. 'title' => __('Publish Box'),
  158. 'content' => $publish_box,
  159. ) );
  160. $discussion_settings = '<p>' . __('<strong>Send Trackbacks</strong> - Trackbacks are a way to notify legacy blog systems that you&#8217;ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they&#8217;ll be notified automatically using pingbacks, and this field is unnecessary.') . '</p>';
  161. $discussion_settings .= '<p>' . __('<strong>Discussion</strong> - You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them.') . '</p>';
  162. get_current_screen()->add_help_tab( array(
  163. 'id' => 'discussion-settings',
  164. 'title' => __('Discussion Settings'),
  165. 'content' => $discussion_settings,
  166. ) );
  167. get_current_screen()->set_help_sidebar(
  168. '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
  169. '<p><strong>' . __('For more information:') . '</strong></p>' .
  170. '<p>' . __('<a href="http://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
  171. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  172. );
  173. } elseif ( 'page' == $post_type ) {
  174. $about_pages = '<p>' . __('Pages are similar to Posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest Pages under other Pages by making one the &#8220;Parent&#8221; of the other, creating a group of Pages.') . '</p>' .
  175. '<p>' . __('Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and HTML modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box:') . '</p>';
  176. get_current_screen()->add_help_tab( array(
  177. 'id' => 'about-pages',
  178. 'title' => __('About Pages'),
  179. 'content' => $about_pages,
  180. ) );
  181. $page_attributes = '<p>' . __('<strong>Parent</strong> - 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 many levels you can nest pages.') . '</p>' .
  182. '<p>' . __('<strong>Template</strong> - 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 in this dropdown menu.') . '</p>' .
  183. '<p>' . __('<strong>Order</strong> - Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field.') . '</p>';
  184. get_current_screen()->add_help_tab( array(
  185. 'id' => 'page-attributes',
  186. 'title' => __('Page Attributes'),
  187. 'content' => $page_attributes,
  188. ) );
  189. get_current_screen()->set_help_sidebar(
  190. '<p><strong>' . __('For more information:') . '</strong></p>' .
  191. '<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
  192. '<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
  193. '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
  194. );
  195. }
  196. require_once('./admin-header.php');
  197. ?>
  198. <div class="wrap">
  199. <?php screen_icon(); ?>
  200. <h2><?php echo esc_html( $title ); ?><?php if ( isset( $post_new_file ) ) : ?> <a href="<?php echo esc_url( $post_new_file ) ?>" class="add-new-h2"><?php echo esc_html($post_type_object->labels->add_new); ?></a><?php endif; ?></h2>
  201. <?php if ( $notice ) : ?>
  202. <div id="notice" class="error"><p><?php echo $notice ?></p></div>
  203. <?php endif; ?>
  204. <?php if ( $message ) : ?>
  205. <div id="message" class="updated"><p><?php echo $message; ?></p></div>
  206. <?php endif; ?>
  207. <form name="post" action="post.php" method="post" id="post"<?php do_action('post_edit_form_tag'); ?>>
  208. <?php wp_nonce_field($nonce_action); ?>
  209. <input type="hidden" id="user-id" name="user_ID" value="<?php echo (int) $user_ID ?>" />
  210. <input type="hidden" id="hiddenaction" name="action" value="<?php echo esc_attr( $form_action ) ?>" />
  211. <input type="hidden" id="originalaction" name="originalaction" value="<?php echo esc_attr( $form_action ) ?>" />
  212. <input type="hidden" id="post_author" name="post_author" value="<?php echo esc_attr( $post->post_author ); ?>" />
  213. <input type="hidden" id="post_type" name="post_type" value="<?php echo esc_attr( $post_type ) ?>" />
  214. <input type="hidden" id="original_post_status" name="original_post_status" value="<?php echo esc_attr( $post->post_status) ?>" />
  215. <input type="hidden" id="referredby" name="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
  216. <?php if ( ! empty( $active_post_lock ) ) { ?>
  217. <input type="hidden" id="active_post_lock" value="<?php echo esc_attr( implode( ':', $active_post_lock ) ); ?>" />
  218. <?php
  219. }
  220. if ( 'draft' != $post->post_status )
  221. wp_original_referer_field(true, 'previous');
  222. echo $form_extra;
  223. wp_nonce_field( 'autosave', 'autosavenonce', false );
  224. wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
  225. wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
  226. ?>
  227. <div id="poststuff">
  228. <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>">
  229. <div id="post-body-content">
  230. <?php if ( post_type_supports($post_type, 'title') ) { ?>
  231. <div id="titlediv">
  232. <div id="titlewrap">
  233. <label class="hide-if-no-js" style="visibility:hidden" id="title-prompt-text" for="title"><?php echo apply_filters( 'enter_title_here', __( 'Enter title here' ), $post ); ?></label>
  234. <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
  235. </div>
  236. <div class="inside">
  237. <?php
  238. $sample_permalink_html = $post_type_object->public ? get_sample_permalink_html($post->ID) : '';
  239. $shortlink = wp_get_shortlink($post->ID, 'post');
  240. if ( !empty($shortlink) )
  241. $sample_permalink_html .= '<input id="shortlink" type="hidden" value="' . esc_attr($shortlink) . '" /><a href="#" class="button" onclick="prompt(&#39;URL:&#39;, jQuery(\'#shortlink\').val()); return false;">' . __('Get Shortlink') . '</a>';
  242. if ( $post_type_object->public && ! ( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) ) { ?>
  243. <div id="edit-slug-box">
  244. <?php
  245. if ( ! empty($post->ID) && ! empty($sample_permalink_html) && 'auto-draft' != $post->post_status )
  246. echo $sample_permalink_html;
  247. ?>
  248. </div>
  249. <?php
  250. }
  251. ?>
  252. </div>
  253. <?php
  254. wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
  255. ?>
  256. </div>
  257. <?php } ?>
  258. <?php if ( post_type_supports($post_type, 'editor') ) { ?>
  259. <div id="postdivrich" class="postarea">
  260. <?php wp_editor($post->post_content, 'content', array('dfw' => true, 'tabindex' => 1) ); ?>
  261. <table id="post-status-info" cellspacing="0"><tbody><tr>
  262. <td id="wp-word-count"><?php printf( __( 'Word count: %s' ), '<span class="word-count">0</span>' ); ?></td>
  263. <td class="autosave-info">
  264. <span class="autosave-message">&nbsp;</span>
  265. <?php
  266. if ( 'auto-draft' != $post->post_status ) {
  267. echo '<span id="last-edit">';
  268. if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
  269. $last_user = get_userdata($last_id);
  270. 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));
  271. } else {
  272. 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));
  273. }
  274. echo '</span>';
  275. } ?>
  276. </td>
  277. </tr></tbody></table>
  278. </div>
  279. <?php } ?>
  280. </div><!-- /post-body-content -->
  281. <div id="postbox-container-1" class="postbox-container">
  282. <?php
  283. if ( 'page' == $post_type )
  284. do_action('submitpage_box');
  285. else
  286. do_action('submitpost_box');
  287. do_meta_boxes($post_type, 'side', $post);
  288. ?>
  289. </div>
  290. <div id="postbox-container-2" class="postbox-container">
  291. <?php
  292. do_meta_boxes(null, 'normal', $post);
  293. if ( 'page' == $post_type )
  294. do_action('edit_page_form');
  295. else
  296. do_action('edit_form_advanced');
  297. do_meta_boxes(null, 'advanced', $post);
  298. ?>
  299. </div>
  300. <?php
  301. do_action('dbx_post_sidebar');
  302. ?>
  303. </div><!-- /post-body -->
  304. <br class="clear" />
  305. </div><!-- /poststuff -->
  306. </form>
  307. </div>
  308. <?php
  309. if ( post_type_supports( $post_type, 'comments' ) )
  310. wp_comment_reply();
  311. ?>
  312. <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>
  313. <script type="text/javascript">
  314. try{document.post.title.focus();}catch(e){}
  315. </script>
  316. <?php endif; ?>