[ Index ]

WordPress Source Cross Reference

title

Body

[close]

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

   1  
   2  <div class="wrap">
   3  <h2 id="write-post"><?php _e('Write Page'); ?><?php if ( 0 != $post_ID ) : ?>
   4  <small class="quickjump"><a href="#preview-post"><?php _e('preview &darr;'); ?></a></small><?php endif; ?></h2>
   5  <?php
   6  if (0 == $post_ID) {
   7      $form_action = 'post';
   8      $nonce_action = 'add-page';
   9      $temp_ID = -1 * time();
  10      $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
  11  } else {
  12      $form_action = 'editpost';
  13      $nonce_action = 'update-page_' . $post_ID;
  14      $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
  15  }
  16  
  17  $sendto = wp_get_referer();
  18  
  19  if ( 0 != $post_ID && $sendto == get_permalink($post_ID) )
  20       $sendto = 'redo';
  21  $sendto = wp_specialchars( $sendto );
  22  
  23  ?>
  24  
  25  <form name="post" action="page.php" method="post" id="post">
  26  
  27  <?php
  28  wp_nonce_field($nonce_action);
  29  
  30  if (isset($mode) && 'bookmarklet' == $mode) {
  31      echo '<input type="hidden" name="mode" value="bookmarklet" />';
  32  }
  33  ?>
  34  <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
  35  <input type="hidden" name="action" value='<?php echo $form_action ?>' />
  36  <?php echo $form_extra ?>
  37  <input type="hidden" name="post_type" value="page" />
  38  
  39  <script type="text/javascript">
  40  // <![CDATA[
  41  function focusit() { // focus on first input field
  42      document.post.title.focus();
  43  }
  44  addLoadEvent(focusit);
  45  // ]]>
  46  </script>
  47  <div id="poststuff">
  48  
  49  <div id="moremeta">
  50  <div id="grabit" class="dbx-group">
  51  <fieldset id="commentstatusdiv" class="dbx-box">
  52  <h3 class="dbx-handle"><?php _e('Discussion') ?></h3>
  53  <div class="dbx-content">
  54  <input name="advanced_view" type="hidden" value="1" />
  55  <label for="comment_status" class="selectit">
  56  <input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> />
  57  <?php _e('Allow Comments') ?></label> 
  58  <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>
  59  </div>
  60  </fieldset>
  61  
  62  <fieldset class="dbx-box">
  63  <h3 class="dbx-handle"><?php _e('Page Status') ?></h3> 
  64  <div class="dbx-content"><?php if ( current_user_can('publish_pages') ) : ?>
  65  <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>
  66  <?php endif; ?>
  67        <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>
  68        <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>
  69  </fieldset>
  70  
  71  <fieldset id="passworddiv" class="dbx-box">
  72  <h3 class="dbx-handle"><?php _e('Page Password') ?></h3> 
  73  <div class="dbx-content"><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post->post_password ?>" /></div>
  74  </fieldset>
  75  
  76  <fieldset id="pageparent" class="dbx-box">
  77  <h3 class="dbx-handle"><?php _e('Page Parent') ?></h3> 
  78  <div class="dbx-content"><p><select name="parent_id">
  79  <option value='0'><?php _e('Main Page (no parent)'); ?></option>
  80  <?php parent_dropdown($post->post_parent); ?>
  81  </select></p>
  82  </div>
  83  </fieldset>
  84  
  85  <?php if ( 0 != count( get_page_templates() ) ) { ?>
  86  <fieldset id="pagetemplate" class="dbx-box">
  87  <h3 class="dbx-handle"><?php _e('Page Template:') ?></h3> 
  88  <div class="dbx-content"><p><select name="page_template">
  89          <option value='default'><?php _e('Default Template'); ?></option>
  90          <?php page_template_dropdown($post->page_template); ?>
  91          </select></p>
  92  </div>
  93  </fieldset>
  94  <?php } ?>
  95  
  96  <fieldset id="slugdiv" class="dbx-box">
  97  <h3 class="dbx-handle"><?php _e('Page 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  <?php if ( $authors = get_editable_authors( $current_user->id ) ) : // TODO: ROLE SYSTEM ?>
 102  <fieldset id="authordiv" class="dbx-box">
 103  <h3 class="dbx-handle"><?php _e('Page author'); ?>:</h3>
 104  <div class="dbx-content">
 105  <select name="post_author_override" id="post_author_override">
 106  <?php 
 107  foreach ($authors as $o) :
 108  $o = get_userdata( $o->ID );
 109  if ( $post->post_author == $o->ID || ( empty($post_ID) && $user_ID == $o->ID ) ) $selected = 'selected="selected"';
 110  else $selected = '';
 111  echo "<option value='$o->ID' $selected>$o->display_name</option>";
 112  endforeach;
 113  ?>
 114  </select>
 115  </div>
 116  </fieldset>
 117  <?php endif; ?>
 118  
 119  <fieldset id="pageorder" class="dbx-box">
 120  <h3 class="dbx-handle"><?php _e('Page Order') ?></h3> 
 121  <div class="dbx-content"><p><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo $post->menu_order ?>" /></p></div>
 122  </fieldset>
 123  
 124  <?php do_action('dbx_page_sidebar'); ?>
 125  
 126  </div>
 127  </div>
 128  
 129  <fieldset id="titlediv">
 130    <legend><?php _e('Page Title') ?></legend> 
 131    <div><input type="text" name="post_title" size="30" tabindex="1" value="<?php echo $post->post_title; ?>" id="title" /></div>
 132  </fieldset>
 133  
 134  
 135  <fieldset id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>">
 136      <legend><?php _e('Page Content') ?></legend>
 137      <?php the_editor($post->post_content); ?>
 138  </fieldset>
 139  
 140  <p class="submit">
 141  <input name="save" type="submit" id="save" tabindex="3" value="<?php _e('Save and Continue Editing'); ?>" />
 142  <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="4" /> 
 143  <?php 
 144  if ('publish' != $post->post_status || 0 == $post_ID):
 145  ?>
 146  <?php if ( current_user_can('publish_pages') ) : ?>
 147      <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 
 148  <?php endif; endif;?>
 149  <input name="referredby" type="hidden" id="referredby" value="<?php echo $sendto; ?>" />
 150  </p>
 151  
 152  <?php do_action('edit_page_form'); ?>
 153  
 154  <?php
 155  if (current_user_can('upload_files')) {
 156      $uploading_iframe_ID = (0 == $post_ID ? $temp_ID : $post_ID);
 157      $uploading_iframe_src = wp_nonce_url("inline-uploading.php?action=view&amp;post=$uploading_iframe_ID", 'inlineuploading');
 158      $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src);
 159      if ( false != $uploading_iframe_src )
 160          echo '<iframe id="uploading" border="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';
 161  }
 162  ?>
 163  
 164  <div id="advancedstuff" class="dbx-group">
 165  
 166  <fieldset id="postcustom" class="dbx-box">
 167  <h3 class="dbx-handle"><?php _e('Custom Fields') ?></h3>
 168  <div id="postcustomstuff" class="dbx-content">
 169  <table cellpadding="3">
 170  <?php 
 171  $metadata = has_meta($post_ID);
 172  list_meta($metadata); 
 173  ?>
 174  
 175  </table>
 176  <?php
 177      meta_form();
 178  ?>
 179  </div>
 180  </fieldset>
 181  
 182  <?php do_action('dbx_page_advanced'); ?>
 183  
 184  </div>
 185  
 186  <?php if ('edit' == $action) :
 187      $delete_nonce = wp_create_nonce( 'delete-page_' . $post_ID ); 
 188      if ( current_user_can('delete_page', $post->ID) ) ?>
 189          <input name="deletepost" class="button" type="submit" id="deletepost" tabindex="10" value="<?php _e('Delete this page') ?>" <?php echo "onclick=\"if ( confirm('" . sprintf(__("You are about to delete this page \'%s\'\\n  \'Cancel\' to stop, \'OK\' to delete."), js_escape($post->post_title) ) . "') ) { document.forms.post._wpnonce.value = '$delete_nonce'; return true;}return false;\""; ?> />
 190  <?php endif; ?>
 191  </form>
 192  
 193  </div>
 194  
 195  </div>

Your comment here...

Name: Location:
Comments:


List: Classes | Functions | Variables | Constants | Tables

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