[ Index ]

WordPress Source Cross Reference

title

Body

[close]

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

   1  <?php
   2  $messages[1] = __('Post updated');
   3  $messages[2] = __('Custom field updated');
   4  $messages[3] = __('Custom field deleted.');
   5  ?>
   6  <?php if (isset($_GET['message'])) : ?>
   7  <div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div>
   8  <?php endif; ?>
   9  
  10  <form name="post" action="post.php" method="post" id="post">
  11  <?php if ( (isset($mode) && 'bookmarklet' == $mode) || 
  12              isset($_GET['popupurl']) ): ?>
  13  <input type="hidden" name="mode" value="bookmarklet" />
  14  <?php endif; ?>
  15  
  16  <div class="wrap">
  17  <h2 id="write-post"><?php _e('Write Post'); ?><?php if ( 0 != $post_ID ) : ?>
  18   <small class="quickjump"><a href="#preview-post"><?php _e('preview &darr;'); ?></a></small><?php endif; ?></h2>
  19  <?php
  20  
  21  if (0 == $post_ID) {
  22      $form_action = 'post';
  23      $temp_ID = -1 * time();
  24      $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
  25      wp_nonce_field('add-post');
  26  } else {
  27      $form_action = 'editpost';
  28      $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
  29      wp_nonce_field('update-post_' .  $post_ID);
  30  }
  31  
  32  $form_pingback = '<input type="hidden" name="post_pingback" value="' . get_option('default_pingback_flag') . '" id="post_pingback" />';
  33  
  34  $form_prevstatus = '<input type="hidden" name="prev_status" value="' . $post->post_status . '" />';
  35  
  36  $form_trackback = '<input type="text" name="trackback_url" style="width: 415px" id="trackback" tabindex="7" value="'. str_replace("\n", ' ', $post->to_ping) .'" />';
  37  
  38  if ('' != $post->pinged) {
  39      $pings = '<p>'. __('Already pinged:') . '</p><ul>';
  40      $already_pinged = explode("\n", trim($post->pinged));
  41      foreach ($already_pinged as $pinged_url) {
  42          $pings .= "\n\t<li>$pinged_url</li>";
  43      }
  44      $pings .= '</ul>';
  45  }
  46  
  47  $saveasdraft = '<input name="save" type="submit" id="save" tabindex="3" value="' . __('Save and Continue Editing') . '" />';
  48  
  49  if (empty($post->post_status)) $post->post_status = 'draft';
  50  
  51  ?>
  52  
  53  <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
  54  <input type="hidden" id="hiddenaction" name="action" value="<?php echo $form_action ?>" />
  55  <input type="hidden" name="post_author" value="<?php echo $post->post_author ?>" />
  56  <input type="hidden" name="post_type" value="post" />
  57  
  58  <?php echo $form_extra ?>
  59  <?php if (isset($_GET['message']) && 2 > $_GET['message']) : ?>
  60  <script type="text/javascript">
  61  function focusit() {
  62      // focus on first input field
  63      document.post.title.focus();
  64  }
  65  addLoadEvent(focusit);
  66  </script>
  67  <?php endif; ?>
  68  <div id="poststuff">
  69  
  70  <div id="moremeta">
  71  <div id="grabit" class="dbx-group">
  72  
  73  <fieldset id="categorydiv" class="dbx-box">
  74  <h3 class="dbx-handle"><?php _e('Categories') ?></h3>
  75  <div class="dbx-content">
  76  <p id="jaxcat"></p>
  77  <ul id="categorychecklist"><?php dropdown_categories(get_settings('default_category')); ?></ul></div>
  78  </fieldset>
  79  
  80  <fieldset id="commentstatusdiv" class="dbx-box">
  81  <h3 class="dbx-handle"><?php _e('Discussion') ?></h3>
  82  <div class="dbx-content">
  83  <input name="advanced_view" type="hidden" value="1" />
  84  <label for="comment_status" class="selectit">
  85  <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
  86  <?php _e('Allow Comments') ?></label> 
  87  <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>
  88  </div>
  89  </fieldset>
  90  
  91  <fieldset id="passworddiv" class="dbx-box">
  92  <h3 class="dbx-handle"><?php _e('Post Password') ?></h3> 
  93  <div class="dbx-content"><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post->post_password ?>" /></div>
  94  </fieldset>
  95  
  96  <fieldset id="slugdiv" class="dbx-box">
  97  <h3 class="dbx-handle"><?php _e('Post slug') ?></h3> 
  98  <div class="dbx-content"><input name="post_name" type="text" size="13" id="post_name" value="<?php echo $post->post_name ?>" /></div>
  99  </fieldset>
 100  
 101  <fieldset class="dbx-box">
 102  <h3 class="dbx-handle"><?php _e('Post Status') ?></h3> 
 103  <div class="dbx-content"><?php if ( current_user_can('publish_posts') ) : ?>
 104  <label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'); ?> /> <?php _e('Published') ?></label>
 105  <?php endif; ?>
 106        <label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label>
 107        <label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
 108  </fieldset>
 109  
 110  <?php if ( current_user_can('edit_posts') ) : ?>
 111  <fieldset class="dbx-box">
 112  <h3 class="dbx-handle"><?php _e('Post Timestamp'); ?>:</h3>
 113  <div class="dbx-content"><?php touch_time(($action == 'edit')); ?></div>
 114  </fieldset>
 115  <?php endif; ?>
 116  
 117  <?php if ( $authors = get_editable_authors( $current_user->id ) ) : // TODO: ROLE SYSTEM ?>
 118  <fieldset id="authordiv" class="dbx-box">
 119  <h3 class="dbx-handle"><?php _e('Post author'); ?>:</h3>
 120  <div class="dbx-content">
 121  <select name="post_author_override" id="post_author_override">
 122  <?php 
 123  foreach ($authors as $o) :
 124  $o = get_userdata( $o->ID );
 125  if ( $post->post_author == $o->ID || ( empty($post_ID) && $user_ID == $o->ID ) ) $selected = 'selected="selected"';
 126  else $selected = '';
 127  echo "<option value='$o->ID' $selected>$o->display_name</option>";
 128  endforeach;
 129  ?>
 130  </select>
 131  </div>
 132  </fieldset>
 133  <?php endif; ?>
 134  
 135  <?php do_action('dbx_post_sidebar'); ?>
 136  
 137  </div>
 138  </div>
 139  
 140  <fieldset id="titlediv">
 141    <legend><?php _e('Title') ?></legend> 
 142    <div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo $post->post_title; ?>" id="title" /></div>
 143  </fieldset>
 144  
 145  <fieldset id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>">
 146  <legend><?php _e('Post') ?></legend>
 147  
 148      <?php the_editor($post->post_content); ?>
 149  
 150  <?php echo $form_pingback ?>
 151  <?php echo $form_prevstatus ?>
 152  
 153  
 154  <p class="submit"><?php echo $saveasdraft; ?> <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="4" /> 
 155  <?php 
 156  if ('publish' != $post->post_status || 0 == $post_ID) {
 157  ?>
 158  <?php if ( current_user_can('publish_posts') ) : ?>
 159      <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 
 160  <?php endif; ?>
 161  <?php
 162  }
 163  ?>
 164  <input name="referredby" type="hidden" id="referredby" value="<?php 
 165  if ( !empty($_REQUEST['popupurl']) )
 166      echo wp_specialchars($_REQUEST['popupurl']);
 167  else if ( url_to_postid(wp_get_referer()) == $post_ID )
 168      echo 'redo';
 169  else
 170      echo wp_specialchars(wp_get_referer());
 171  ?>" /></p>
 172  
 173  <?php do_action('edit_form_advanced'); ?>
 174  
 175  <?php
 176  if (current_user_can('upload_files')) {
 177      $uploading_iframe_ID = (0 == $post_ID ? $temp_ID : $post_ID);
 178      $uploading_iframe_src = wp_nonce_url("inline-uploading.php?action=view&amp;post=$uploading_iframe_ID", 'inlineuploading');
 179      $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src);
 180      if ( false != $uploading_iframe_src )
 181          echo '<iframe id="uploading" border="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';
 182  }
 183  ?>
 184  
 185  <div id="advancedstuff" class="dbx-group" >
 186  
 187  <div class="dbx-box-wrapper">
 188  <fieldset id="postexcerpt" class="dbx-box">
 189  <div class="dbx-handle-wrapper">
 190  <h3 class="dbx-handle"><?php _e('Optional Excerpt') ?></h3>
 191  </div>
 192  <div class="dbx-content-wrapper">
 193  <div class="dbx-content"><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea></div>
 194  </div>
 195  </fieldset>
 196  </div>
 197  
 198  <div class="dbx-box-wrapper">
 199  <fieldset class="dbx-box">
 200  <div class="dbx-handle-wrapper">
 201  <h3 class="dbx-handle"><?php _e('Trackbacks') ?></h3>
 202  </div>
 203  <div class="dbx-content-wrapper">
 204  <div class="dbx-content"><?php _e('Send trackbacks to'); ?>: <?php echo $form_trackback; ?> (<?php _e('Separate multiple URIs with spaces'); ?>)
 205  <?php 
 206  if ( ! empty($pings) )
 207      echo $pings;
 208  ?>
 209  </div>
 210  </div>
 211  </fieldset>
 212  </div>
 213  
 214  <div class="dbx-box-wrapper">
 215  <fieldset id="postcustom" class="dbx-box">
 216  <div class="dbx-handle-wrapper">
 217  <h3 class="dbx-handle"><?php _e('Custom Fields') ?></h3>
 218  </div>
 219  <div class="dbx-content-wrapper">
 220  <div id="postcustomstuff" class="dbx-content">
 221  <table cellpadding="3">
 222  <?php
 223  $metadata = has_meta($post_ID);
 224  list_meta($metadata); 
 225  ?>
 226  
 227  </table>
 228  <?php
 229      meta_form();
 230  ?>
 231  <div id="ajax-response"></div>
 232  </div>
 233  </fieldset>
 234  </div>
 235  
 236  <?php do_action('dbx_post_advanced'); ?>
 237  
 238  </div>
 239  
 240  <?php if ('edit' == $action) : $delete_nonce = wp_create_nonce( 'delete-post_' . $post_ID ); ?>
 241  <input name="deletepost" class="button" type="submit" id="deletepost" tabindex="10" value="<?php _e('Delete this post') ?>" <?php echo "onclick=\"if ( confirm('" . sprintf(__("You are about to delete this post \'%s\'\\n  \'Cancel\' to stop, \'OK\' to delete."), js_escape($post->post_title) ) . "') ) { document.forms.post._wpnonce.value = '$delete_nonce'; return true;}return false;\""; ?> />
 242  <?php endif; ?>
 243  
 244  </div>
 245  
 246  </div>
 247  
 248  </form>

Your comment here...

Name: Location:
Comments:


List: Classes | Functions | Variables | Constants | Tables

Generated: Sat Jul 15 11:57:04 2006 Courtesy of Taragana