[ Root ] [ Search ] [ Index ]

PHP Cross Reference of WordPress 3.0

Provided by Yoast

title

Body

[close]

/wp-admin/ -> edit-form-advanced.php (source)

   1  <?php
   2  /**
   3   * Post advanced 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  wp_enqueue_script('post');
  14  
  15  if ( post_type_supports($post_type, 'editor') ) {
  16      if ( user_can_richedit() )
  17          wp_enqueue_script('editor');
  18      wp_enqueue_script('word-count');
  19  }
  20  
  21  if ( post_type_supports($post_type, 'editor') || post_type_supports($post_type, 'thumbnail') ) {
  22      add_thickbox();
  23      wp_enqueue_script('media-upload');
  24  }
  25  
  26  /**
  27   * Post ID global
  28   * @name $post_ID
  29   * @var int
  30   */
  31  $post_ID = isset($post_ID) ? (int) $post_ID : 0;
  32  $temp_ID = isset($temp_ID) ? (int) $temp_ID : 0;
  33  $user_ID = isset($user_ID) ? (int) $user_ID : 0;
  34  $action = isset($action) ? $action : '';
  35  
  36  $messages = array();
  37  $messages['post'] = array(
  38       0 => '', // Unused. Messages start at index 1.
  39       1 => sprintf( __('Post updated. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
  40       2 => __('Custom field updated.'),
  41       3 => __('Custom field deleted.'),
  42       4 => __('Post updated.'),
  43      /* translators: %s: date and time of the revision */
  44       5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
  45       6 => sprintf( __('Post published. <a href="%s">View post</a>'), esc_url( get_permalink($post_ID) ) ),
  46       7 => __('Post saved.'),
  47       8 => sprintf( __('Post submitted. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  48       9 => sprintf( __('Post scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview post</a>'),
  49          // translators: Publish box date format, see http://php.net/date
  50          date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post->post_date ) ), esc_url( get_permalink($post_ID) ) ),
  51      10 => sprintf( __('Post draft updated. <a target="_blank" href="%s">Preview post</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  52  );
  53  $messages['page'] = array(
  54       0 => '', // Unused. Messages start at index 1.
  55       1 => sprintf( __('Page updated. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
  56       2 => __('Custom field updated.'),
  57       3 => __('Custom field deleted.'),
  58       4 => __('Page updated.'),
  59       5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
  60       6 => sprintf( __('Page published. <a href="%s">View page</a>'), esc_url( get_permalink($post_ID) ) ),
  61       7 => __('Page saved.'),
  62       8 => sprintf( __('Page submitted. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  63       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) ) ),
  64      10 => sprintf( __('Page draft updated. <a target="_blank" href="%s">Preview page</a>'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
  65  );
  66  
  67  $messages = apply_filters( 'post_updated_messages', $messages );
  68  
  69  $message = false;
  70  if ( isset($_GET['message']) ) {
  71      $_GET['message'] = absint( $_GET['message'] );
  72      if ( isset($messages[$post_type][$_GET['message']]) )
  73          $message = $messages[$post_type][$_GET['message']];
  74      elseif ( !isset($messages[$post_type]) && isset($messages['post'][$_GET['message']]) )
  75          $message = $messages['post'][$_GET['message']];
  76  }
  77  
  78  $notice = false;
  79  $form_extra = '';
  80  if ( 'auto-draft' == $post->post_status ) {
  81      if ( 'edit' == $action )
  82          $post->post_title = '';
  83      $autosave = false;
  84      $form_extra .= "<input type='hidden' id='auto_draft' name='auto_draft' value='1' />";
  85  } else {
  86      $autosave = wp_get_post_autosave( $post_ID );
  87  }
  88  
  89  $form_action = 'editpost';
  90  $nonce_action = 'update-' . $post_type . '_' . $post_ID;
  91  $form_extra .= "<input type='hidden' id='post_ID' name='post_ID' value='" . esc_attr($post_ID) . "' />";
  92  
  93  // Detect if there exists an autosave newer than the post and if that autosave is different than the post
  94  if ( $autosave && mysql2date( 'U', $autosave->post_modified_gmt, false ) > mysql2date( 'U', $post->post_modified_gmt, false ) ) {
  95      foreach ( _wp_post_revision_fields() as $autosave_field => $_autosave_field ) {
  96          if ( normalize_whitespace( $autosave->$autosave_field ) != normalize_whitespace( $post->$autosave_field ) ) {
  97              $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 ) );
  98              break;
  99          }
 100      }
 101      unset($autosave_field, $_autosave_field);
 102  }
 103  
 104  $post_type_object = get_post_type_object($post_type);
 105  
 106  // All meta boxes should be defined and added before the first do_meta_boxes() call (or potentially during the do_meta_boxes action).
 107  require_once ('./includes/meta-boxes.php');
 108  
 109  add_meta_box('submitdiv', __('Publish'), 'post_submit_meta_box', $post_type, 'side', 'core');
 110  
 111  // all taxonomies
 112  foreach ( get_object_taxonomies($post_type) as $tax_name ) {
 113      $taxonomy = get_taxonomy($tax_name);
 114      if ( ! $taxonomy->show_ui )
 115          continue;
 116  
 117      $label = $taxonomy->labels->name;
 118  
 119      if ( !is_taxonomy_hierarchical($tax_name) )
 120          add_meta_box('tagsdiv-' . $tax_name, $label, 'post_tags_meta_box', $post_type, 'side', 'core', array( 'taxonomy' => $tax_name ));
 121      else
 122          add_meta_box($tax_name . 'div', $label, 'post_categories_meta_box', $post_type, 'side', 'core', array( 'taxonomy' => $tax_name ));
 123  }
 124  
 125  if ( post_type_supports($post_type, 'page-attributes') )
 126      add_meta_box('pageparentdiv', 'page' == $post_type ? __('Page Attributes') : __('Attributes'), 'page_attributes_meta_box', $post_type, 'side', 'core');
 127  
 128  if ( current_theme_supports( 'post-thumbnails', $post_type ) && post_type_supports( $post_type, 'thumbnail' )
 129      && ( ! is_multisite() || ( ( $mu_media_buttons = get_site_option( 'mu_media_buttons', array() ) ) && ! empty( $mu_media_buttons['image'] ) ) ) )
 130          add_meta_box('postimagediv', __('Featured Image'), 'post_thumbnail_meta_box', $post_type, 'side', 'low');
 131  
 132  if ( post_type_supports($post_type, 'excerpt') )
 133      add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', $post_type, 'normal', 'core');
 134  
 135  if ( post_type_supports($post_type, 'trackbacks') )
 136      add_meta_box('trackbacksdiv', __('Send Trackbacks'), 'post_trackback_meta_box', $post_type, 'normal', 'core');
 137  
 138  if ( post_type_supports($post_type, 'custom-fields') )
 139      add_meta_box('postcustom', __('Custom Fields'), 'post_custom_meta_box', $post_type, 'normal', 'core');
 140  
 141  do_action('dbx_post_advanced');
 142  if ( post_type_supports($post_type, 'comments') )
 143      add_meta_box('commentstatusdiv', __('Discussion'), 'post_comment_status_meta_box', $post_type, 'normal', 'core');
 144  
 145  if ( ('publish' == $post->post_status || 'private' == $post->post_status) && post_type_supports($post_type, 'comments') )
 146      add_meta_box('commentsdiv', __('Comments'), 'post_comment_meta_box', $post_type, 'normal', 'core');
 147  
 148  if ( !( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) )
 149      add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', $post_type, 'normal', 'core');
 150  
 151  if ( post_type_supports($post_type, 'author') ) {
 152      $authors = get_editable_user_ids( $current_user->id ); // TODO: ROLE SYSTEM
 153      if ( $post->post_author && !in_array($post->post_author, $authors) )
 154          $authors[] = $post->post_author;
 155      if ( ( $authors && count( $authors ) > 1 ) || is_super_admin() )
 156          add_meta_box('authordiv', __('Author'), 'post_author_meta_box', $post_type, 'normal', 'core');
 157  }
 158  
 159  if ( post_type_supports($post_type, 'revisions') && 0 < $post_ID && wp_get_post_revisions( $post_ID ) )
 160      add_meta_box('revisionsdiv', __('Revisions'), 'post_revisions_meta_box', $post_type, 'normal', 'core');
 161  
 162  do_action('add_meta_boxes', $post_type, $post);
 163  do_action('add_meta_boxes_' . $post_type, $post);
 164  
 165  do_action('do_meta_boxes', $post_type, 'normal', $post);
 166  do_action('do_meta_boxes', $post_type, 'advanced', $post);
 167  do_action('do_meta_boxes', $post_type, 'side', $post);
 168  
 169  if ( 'post' == $post_type ) {
 170      add_contextual_help($current_screen,
 171      '<p>' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes that allow you to add metadata to your post using drag and drop, and can minimize or expand them by clicking the title bar of the box. You can also hide any of the boxes by using the Screen Options tab, where you can also choose a 1- or 2-column layout for this screen.') . '</p>' .
 172      '<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>' .
 173      '<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.') . '</p>' .
 174      '<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>' .
 175      '<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>' .
 176      '<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>' .
 177      '<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>' .
 178      '<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
 179      '<p><strong>' . __('For more information:') . '</strong></p>' .
 180      '<p>' . __('<a href="http://codex.wordpress.org/Writing_Posts" target="_blank">Documentation on Writing Posts</a>') . '</p>' .
 181      '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 182      );
 183  } elseif ( 'page' == $post_type ) {
 184      add_contextual_help($current_screen, '<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>' .
 185      '<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. The Page editor mostly works the same Post editor, but there are some Page-specific features in the Page Attributes box:') . '</p>' .
 186      '<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>' .
 187      '<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>' .
 188      '<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>' .
 189      '<p><strong>' . __('For more information:') . '</strong></p>' .
 190      '<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_SubPanel" target="_blank">Page Creation Documentation</a>') . '</p>' .
 191      '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 192      );
 193  }
 194  
 195  require_once ('./admin-header.php');
 196  ?>
 197  
 198  <div class="wrap">
 199  <?php screen_icon(); ?>
 200  <h2><?php echo esc_html( $title ); ?></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
 217  if ( 'draft' != $post->post_status )
 218      wp_original_referer_field(true, 'previous');
 219  
 220  echo $form_extra;
 221  
 222  wp_nonce_field( 'autosave', 'autosavenonce', false );
 223  wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
 224  wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
 225  ?>
 226  
 227  <div id="poststuff" class="metabox-holder<?php echo 2 == $screen_layout_columns ? ' has-right-sidebar' : ''; ?>">
 228  <div id="side-info-column" class="inner-sidebar">
 229  
 230  <?php
 231  ('page' == $post_type) ? do_action('submitpage_box') : do_action('submitpost_box');
 232  $side_meta_boxes = do_meta_boxes($post_type, 'side', $post);
 233  ?>
 234  </div>
 235  
 236  <div id="post-body">
 237  <div id="post-body-content">
 238  <?php if ( post_type_supports($post_type, 'title') ) { ?>
 239  <div id="titlediv">
 240  <div id="titlewrap">
 241      <label class="hide-if-no-js" style="visibility:hidden" id="title-prompt-text" for="title"><?php _e('Enter title here') ?></label>
 242      <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" />
 243  </div>
 244  <div class="inside">
 245  <?php
 246  $sample_permalink_html = get_sample_permalink_html($post->ID);
 247  $shortlink = wp_get_shortlink($post->ID, 'post');
 248  if ( !empty($shortlink) )
 249      $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>';
 250  
 251  if ( !( 'pending' == $post->post_status && !current_user_can( $post_type_object->cap->publish_posts ) ) ) { ?>
 252      <div id="edit-slug-box">
 253      <?php
 254          if ( ! empty($post->ID) && ! empty($sample_permalink_html) && 'auto-draft' != $post->post_status )
 255              echo $sample_permalink_html;
 256      ?>
 257      </div>
 258  <?php
 259  }
 260  ?>
 261  </div>
 262  <?php
 263  wp_nonce_field( 'samplepermalink', 'samplepermalinknonce', false );
 264  ?>
 265  </div>
 266  <?php } ?>
 267  
 268  <?php if ( post_type_supports($post_type, 'editor') ) { ?>
 269  <div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
 270  
 271  <?php the_editor($post->post_content); ?>
 272  
 273  <table id="post-status-info" cellspacing="0"><tbody><tr>
 274      <td id="wp-word-count"></td>
 275      <td class="autosave-info">
 276      <span id="autosave">&nbsp;</span>
 277  <?php
 278      if ( 'auto-draft' != $post->post_status ) {
 279          echo '<span id="last-edit">';
 280          if ( $last_id = get_post_meta($post_ID, '_edit_last', true) ) {
 281              $last_user = get_userdata($last_id);
 282              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));
 283          } else {
 284              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));
 285          }
 286          echo '</span>';
 287      } ?>
 288      </td>
 289  </tr></tbody></table>
 290  
 291  </div>
 292  
 293  <?php
 294  }
 295  
 296  do_meta_boxes($post_type, 'normal', $post);
 297  
 298  ( 'page' == $post_type ) ? do_action('edit_page_form') : do_action('edit_form_advanced');
 299  
 300  do_meta_boxes($post_type, 'advanced', $post);
 301  
 302  do_action('dbx_post_sidebar'); ?>
 303  
 304  </div>
 305  </div>
 306  <br class="clear" />
 307  </div><!-- /poststuff -->
 308  </form>
 309  </div>
 310  
 311  <?php wp_comment_reply(); ?>
 312  
 313  <?php if ((isset($post->post_title) && '' == $post->post_title) || (isset($_GET['message']) && 2 > $_GET['message'])) : ?>
 314  <script type="text/javascript">
 315  try{document.post.title.focus();}catch(e){}
 316  </script>
 317  <?php endif; ?>


Generated: Thu Oct 14 05:11:12 2010 Cross-referenced by PHPXref 0.7