Changes in trunk/wp-admin/edit-page-form.php [4397:3456]
- File:
-
- 1 edited
-
trunk/wp-admin/edit-page-form.php (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r4397 r3456 1 1 2 2 <div class="wrap"> 3 <h2 id="write-post"><?php _e('Write Page'); ?></h2> 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 ↓'); ?></a></small><?php endif; ?></h2> 4 5 <?php 5 6 if (0 == $post_ID) { 6 7 $form_action = 'post'; 7 $nonce_action = 'add-page';8 8 $temp_ID = -1 * time(); 9 $form_extra = "<input type='hidden' id='post_ID'name='temp_ID' value='$temp_ID' />";9 $form_extra = "<input type='hidden' name='temp_ID' value='$temp_ID' />"; 10 10 } else { 11 11 $form_action = 'editpost'; 12 $nonce_action = 'update-page_' . $post_ID; 13 $form_extra = "<input type='hidden' id='post_ID' name='post_ID' value='$post_ID' />"; 14 } 15 16 $sendto = wp_get_referer(); 12 $form_extra = "<input type='hidden' name='post_ID' value='$post_ID' />"; 13 } 14 15 $sendto = $_SERVER['HTTP_REFERER']; 17 16 18 17 if ( 0 != $post_ID && $sendto == get_permalink($post_ID) ) … … 22 21 ?> 23 22 24 <form name="post" action="page.php" method="post" id="post"> 25 26 <?php 27 wp_nonce_field($nonce_action); 28 23 <form name="post" action="post.php" method="post" id="post"> 24 25 <?php 29 26 if (isset($mode) && 'bookmarklet' == $mode) { 30 27 echo '<input type="hidden" name="mode" value="bookmarklet" />'; … … 32 29 ?> 33 30 <input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" /> 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 ?>" /> 31 <input type="hidden" name="action" value='<?php echo $form_action ?>' /> 36 32 <?php echo $form_extra ?> 37 <input type="hidden" id="post_type" name="post_type" value="page" />33 <input type="hidden" name="post_status" value="static" /> 38 34 39 35 <script type="text/javascript"> 40 // <![CDATA[ 36 <!-- 41 37 function focusit() { // focus on first input field 42 38 document.post.title.focus(); 43 39 } 44 40 addLoadEvent(focusit); 45 // ]]>41 //--> 46 42 </script> 47 43 <div id="poststuff"> … … 60 56 </fieldset> 61 57 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 58 <fieldset id="passworddiv" class="dbx-box"> 72 <h3 class="dbx-handle"><?php _e('Pa ge Password') ?></h3>59 <h3 class="dbx-handle"><?php _e('Password-Protect Post') ?></h3> 73 60 <div class="dbx-content"><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post->post_password ?>" /></div> 74 61 </fieldset> … … 84 71 85 72 <?php if ( 0 != count( get_page_templates() ) ) { ?> 86 <fieldset id="page template" class="dbx-box">73 <fieldset id="pageparent" class="dbx-box"> 87 74 <h3 class="dbx-handle"><?php _e('Page Template:') ?></h3> 88 75 <div class="dbx-content"><p><select name="page_template"> … … 95 82 96 83 <fieldset id="slugdiv" class="dbx-box"> 97 <h3 class="dbx-handle"><?php _e('P age Slug') ?></h3>84 <h3 class="dbx-handle"><?php _e('Post slug') ?></h3> 98 85 <div class="dbx-content"><input name="post_name" type="text" size="13" id="post_name" value="<?php echo $post->post_name ?>" /></div> 99 86 </fieldset> … … 101 88 <?php if ( $authors = get_editable_authors( $current_user->id ) ) : // TODO: ROLE SYSTEM ?> 102 89 <fieldset id="authordiv" class="dbx-box"> 103 <h3 class="dbx-handle"><?php _e('P age Author'); ?>:</h3>90 <h3 class="dbx-handle"><?php _e('Post author'); ?>:</h3> 104 91 <div class="dbx-content"> 105 92 <select name="post_author_override" id="post_author_override"> … … 135 122 <fieldset id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>"> 136 123 <legend><?php _e('Page Content') ?></legend> 137 <?php the_editor($post->post_content); ?> 138 </fieldset> 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> 133 </fieldset> 134 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> 139 173 140 174 <p class="submit"> 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 145 if ('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;?> 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') ?> »" /> 178 <?php else : ?> 179 <input name="savepage" type="submit" id="savepage" tabindex="6" value="<?php _e('Create New Page') ?> »" /> 180 <?php endif; ?> 150 181 <input name="referredby" type="hidden" id="referredby" value="<?php echo $sendto; ?>" /> 151 182 </p> … … 156 187 if (current_user_can('upload_files')) { 157 188 $uploading_iframe_ID = (0 == $post_ID ? $temp_ID : $post_ID); 158 $uploading_iframe_src = wp_nonce_url("upload.php?style=inline&tab=upload&post_id=$uploading_iframe_ID", 'inlineuploading');189 $uploading_iframe_src = "inline-uploading.php?action=view&post=$uploading_iframe_ID"; 159 190 $uploading_iframe_src = apply_filters('uploading_iframe_src', $uploading_iframe_src); 160 191 if ( false != $uploading_iframe_src ) 161 echo '<iframe id="uploading" frameborder="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>';192 echo '<iframe id="uploading" border="0" src="' . $uploading_iframe_src . '">' . __('This feature requires iframe support.') . '</iframe>'; 162 193 } 163 194 ?> … … 168 199 <h3 class="dbx-handle"><?php _e('Custom Fields') ?></h3> 169 200 <div id="postcustomstuff" class="dbx-content"> 170 <table cellpadding="3">171 201 <?php 172 $metadata = has_meta($post_ID); 173 list_meta($metadata); 174 ?> 175 176 </table> 177 <?php 202 if($metadata = has_meta($post_ID)) { 203 ?> 204 <?php 205 list_meta($metadata); 206 ?> 207 <?php 208 } 178 209 meta_form(); 179 210 ?> 180 211 </div> 181 <div id="ajax-response"></div>182 212 </fieldset> 183 213 … … 186 216 </div> 187 217 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;\""; ?> /> 192 <?php endif; ?> 193 </div> 194 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) ) . "')\""; ?> /> 220 <?php endif; ?> 195 221 </form> 196 222 197 223 </div> 224 225 </div>
Note: See TracChangeset
for help on using the changeset viewer.