Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-page-form.php

    r3456 r4397  
    11
    22<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>
     3<h2 id="write-post"><?php _e('Write Page'); ?></h2>
    54<?php
    65if (0 == $post_ID) {
    76    $form_action = 'post';
     7    $nonce_action = 'add-page';
    88    $temp_ID = -1 * time();
    9     $form_extra = "<input type='hidden' name='temp_ID' value='$temp_ID' />";
     9    $form_extra = "<input type='hidden' id='post_ID' name='temp_ID' value='$temp_ID' />";
    1010} else {
    1111    $form_action = 'editpost';
    12     $form_extra = "<input type='hidden' name='post_ID' value='$post_ID' />";
     12    $nonce_action = 'update-page_' . $post_ID;
     13    $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />";
    1314}
    1415
    15 $sendto = $_SERVER['HTTP_REFERER'];
     16$sendto = wp_get_referer();
    1617
    1718if ( 0 != $post_ID && $sendto == get_permalink($post_ID) )
     
    2122?>
    2223
    23 <form name="post" action="post.php" method="post" id="post">
     24<form name="post" action="page.php" method="post" id="post">
    2425
    2526<?php
     27wp_nonce_field($nonce_action);
     28
    2629if (isset($mode) && 'bookmarklet' == $mode) {
    2730    echo '<input type="hidden" name="mode" value="bookmarklet" />';
     
    2932?>
    3033<input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
    31 <input type="hidden" name="action" value='<?php echo $form_action ?>' />
     34<input type="hidden" id="hiddenaction" name="action" value='<?php echo $form_action ?>' />
     35<input type="hidden" id="originalaction" name="originalaction" value="<?php echo $form_action ?>" />
    3236<?php echo $form_extra ?>
    33 <input type="hidden" name="post_status" value="static" />
     37<input type="hidden" id="post_type" name="post_type" value="page" />
    3438
    3539<script type="text/javascript">
    36 <!--
     40// <![CDATA[
    3741function focusit() { // focus on first input field
    3842    document.post.title.focus();
    3943}
    4044addLoadEvent(focusit);
    41 //-->
     45// ]]>
    4246</script>
    4347<div id="poststuff">
     
    5660</fieldset>
    5761
     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
    5871<fieldset id="passworddiv" class="dbx-box">
    59 <h3 class="dbx-handle"><?php _e('Password-Protect Post') ?></h3>
     72<h3 class="dbx-handle"><?php _e('Page Password') ?></h3>
    6073<div class="dbx-content"><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post->post_password ?>" /></div>
    6174</fieldset>
     
    7184
    7285<?php if ( 0 != count( get_page_templates() ) ) { ?>
    73 <fieldset id="pageparent" class="dbx-box">
     86<fieldset id="pagetemplate" class="dbx-box">
    7487<h3 class="dbx-handle"><?php _e('Page Template:') ?></h3>
    7588<div class="dbx-content"><p><select name="page_template">
     
    8295
    8396<fieldset id="slugdiv" class="dbx-box">
    84 <h3 class="dbx-handle"><?php _e('Post slug') ?></h3>
     97<h3 class="dbx-handle"><?php _e('Page Slug') ?></h3>
    8598<div class="dbx-content"><input name="post_name" type="text" size="13" id="post_name" value="<?php echo $post->post_name ?>" /></div>
    8699</fieldset>
     
    88101<?php if ( $authors = get_editable_authors( $current_user->id ) ) : // TODO: ROLE SYSTEM ?>
    89102<fieldset id="authordiv" class="dbx-box">
    90 <h3 class="dbx-handle"><?php _e('Post author'); ?>:</h3>
     103<h3 class="dbx-handle"><?php _e('Page Author'); ?>:</h3>
    91104<div class="dbx-content">
    92105<select name="post_author_override" id="post_author_override">
     
    122135<fieldset id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>">
    123136    <legend><?php _e('Page Content') ?></legend>
    124 <?php
    125  $rows = get_settings('default_post_edit_rows');
    126  if (($rows < 3) || ($rows > 100)) {
    127      $rows = 10;
    128  }
    129 ?>
    130 <?php the_quicktags(); ?>
    131 
    132 <div><textarea title="true" rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="4" id="content"><?php echo user_can_richedit() ? wp_richedit_pre($post->post_content) : $post->post_content; ?></textarea></div>
     137    <?php the_editor($post->post_content); ?>
    133138</fieldset>
    134139
    135 <script type="text/javascript">
    136 <!--
    137 edCanvas = document.getElementById('content');
    138 <?php if ( user_can_richedit() ) : ?>
    139 // This code is meant to allow tabbing from Title to Post (TinyMCE).
    140 if ( tinyMCE.isMSIE )
    141     document.getElementById('title').onkeydown = function (e)
    142         {
    143             e = e ? e : window.event;
    144             if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
    145                 var i = tinyMCE.selectedInstance;
    146                 if(typeof i ==  'undefined')
    147                     return true;
    148                                 tinyMCE.execCommand("mceStartTyping");
    149                 this.blur();
    150                 i.contentWindow.focus();
    151                 e.returnValue = false;
    152                 return false;
    153             }
    154         }
    155 else
    156     document.getElementById('title').onkeypress = function (e)
    157         {
    158             e = e ? e : window.event;
    159             if (e.keyCode == 9 && !e.shiftKey && !e.controlKey && !e.altKey) {
    160                 var i = tinyMCE.selectedInstance;
    161                 if(typeof i ==  'undefined')
    162                     return true;
    163                                 tinyMCE.execCommand("mceStartTyping");
    164                 this.blur();
    165                 i.contentWindow.focus();
    166                 e.returnValue = false;
    167                 return false;
    168             }
    169         }
    170 <?php endif; ?>
    171 //-->
    172 </script>
    173 
    174140<p class="submit">
    175 <?php if ( $post_ID ) : ?>
    176 <input name="save" type="submit" id="save" tabindex="5" value=" <?php _e('Save and Continue Editing'); ?> "/>
    177 <input name="savepage" type="submit" id="savepage" tabindex="6" value="<?php $post_ID ? _e('Save') : _e('Create New Page') ?> &raquo;" />
    178 <?php else : ?>
    179 <input name="savepage" type="submit" id="savepage" tabindex="6" value="<?php _e('Create New Page') ?> &raquo;" />
    180 <?php endif; ?>
     141<span id="autosave"></span>
     142<input name="save" type="submit" id="save" tabindex="3" value="<?php _e('Save and Continue Editing'); ?>" />
     143<input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="4" />
     144<?php
     145if ('publish' != $post->post_status || 0 == $post_ID):
     146?>
     147<?php if ( current_user_can('publish_pages') ) : ?>
     148    <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />
     149<?php endif; endif;?>
    181150<input name="referredby" type="hidden" id="referredby" value="<?php echo $sendto; ?>" />
    182151</p>
     
    187156if (current_user_can('upload_files')) {
    188157    $uploading_iframe_ID = (0 == $post_ID ? $temp_ID : $post_ID);
    189     $uploading_iframe_src = "inline-uploading.php?action=view&amp;post=$uploading_iframe_ID";
     158    $uploading_iframe_src = wp_nonce_url("upload.php?style=inline&amp;tab=upload&amp;post_id=$uploading_iframe_ID", 'inlineuploading');
    190159    $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src);
    191160    if ( false != $uploading_iframe_src )
    192         echo '<iframe id="uploading" border="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';
     161        echo '<iframe id="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';
    193162}
    194163?>
     
    199168<h3 class="dbx-handle"><?php _e('Custom Fields') ?></h3>
    200169<div id="postcustomstuff" class="dbx-content">
     170<table cellpadding="3">
    201171<?php
    202 if($metadata = has_meta($post_ID)) {
     172$metadata = has_meta($post_ID);
     173list_meta($metadata);
    203174?>
     175
     176</table>
    204177<?php
    205     list_meta($metadata);
    206 ?>
    207 <?php
    208 }
    209178    meta_form();
    210179?>
    211180</div>
     181<div id="ajax-response"></div>
    212182</fieldset>
    213183
     
    216186</div>
    217187
    218 <?php if ('edit' == $action) : ?>
    219         <input name="deletepost" class="delete" type="submit" id="deletepost" tabindex="10" value="<?php _e('Delete this page') ?>" <?php echo "onclick=\"return confirm('" . sprintf(__("You are about to delete this page \'%s\'\\n  \'Cancel\' to stop, \'OK\' to delete."), $wpdb->escape($post->post_title) ) . "')\""; ?> />
     188<?php if ('edit' == $action) :
     189    $delete_nonce = wp_create_nonce( 'delete-page_' . $post_ID );
     190    if ( current_user_can('delete_page', $post->ID) ) ?>
     191        <input name="deletepost" class="button delete" 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;\""; ?> />
    220192<?php endif; ?>
     193</div>
     194
    221195</form>
    222196
    223197</div>
    224 
    225 </div>
Note: See TracChangeset for help on using the changeset viewer.