2004-08-10 07:58:19 +02:00
< div class = " wrap " >
2005-10-29 03:52:56 +02:00
< h2 id = " write-post " >< ? php _e ( 'Write Page' ); ?> <?php if ( 0 != $post_ID ) : ?>
< small class = " quickjump " >< a href = " #preview-post " >< ? php _e ( 'preview ↓' ); ?> </a></small><?php endif; ?></h2>
2004-08-10 07:58:19 +02:00
< ? php
2004-09-10 03:32:20 +02:00
if ( 0 == $post_ID ) {
$form_action = 'post' ;
2006-05-12 01:05:45 +02:00
$nonce_action = 'add-post' ;
2005-10-14 23:52:56 +02:00
$temp_ID = - 1 * time ();
$form_extra = " <input type='hidden' name='temp_ID' value=' $temp_ID ' /> " ;
2004-09-10 03:32:20 +02:00
} else {
$form_action = 'editpost' ;
2006-05-27 01:31:24 +02:00
$nonce_action = 'update-post_' . $post_ID ;
2006-05-12 01:05:45 +02:00
$form_extra = " <input type='hidden' id='post_ID' name='post_ID' value=' $post_ID ' /> " ;
2004-09-10 03:32:20 +02:00
}
2005-02-14 10:46:08 +01:00
$sendto = $_SERVER [ 'HTTP_REFERER' ];
2005-03-06 06:48:41 +01:00
if ( 0 != $post_ID && $sendto == get_permalink ( $post_ID ) )
$sendto = 'redo' ;
2005-02-14 10:46:08 +01:00
$sendto = wp_specialchars ( $sendto );
2004-08-10 07:58:19 +02:00
?>
< form name = " post " action = " post.php " method = " post " id = " post " >
< ? php
2006-05-12 01:05:45 +02:00
wp_nonce_field ( $nonce_action );
2004-08-10 07:58:19 +02:00
if ( isset ( $mode ) && 'bookmarklet' == $mode ) {
echo '<input type="hidden" name="mode" value="bookmarklet" />' ;
}
?>
< input type = " hidden " name = " user_ID " value = " <?php echo $user_ID ?> " />
2004-09-10 03:32:20 +02:00
< input type = " hidden " name = " action " value = '<?php echo $form_action ?>' />
< ? php echo $form_extra ?>
< input type = " hidden " name = " post_status " value = " static " />
2004-08-10 07:58:19 +02:00
< script type = " text/javascript " >
<!--
2005-08-08 03:13:22 +02:00
function focusit () { // focus on first input field
2004-08-10 07:58:19 +02:00
document . post . title . focus ();
}
2005-08-08 03:13:22 +02:00
addLoadEvent ( focusit );
2004-08-10 07:58:19 +02:00
//-->
</ script >
2005-07-23 08:22:48 +02:00
< div id = " poststuff " >
< div id = " moremeta " >
< div id = " grabit " class = " dbx-group " >
< fieldset id = " commentstatusdiv " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Discussion' ) ?> </h3>
< div class = " dbx-content " >
< input name = " advanced_view " type = " hidden " value = " 1 " />
< label for = " comment_status " class = " selectit " >
< input name = " comment_status " type = " checkbox " id = " comment_status " value = " open " < ? php checked ( $post -> comment_status , 'open' ); ?> />
< ? php _e ( 'Allow Comments' ) ?> </label>
< 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>
</ div >
</ fieldset >
< fieldset id = " passworddiv " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Password-Protect Post' ) ?> </h3>
< div class = " dbx-content " >< input name = " post_password " type = " text " size = " 13 " id = " post_password " value = " <?php echo $post->post_password ?> " /></ div >
</ fieldset >
< fieldset id = " pageparent " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Page Parent' ) ?> </h3>
< div class = " dbx-content " >< p >< select name = " parent_id " >
< option value = '0' >< ? php _e ( 'Main Page (no parent)' ); ?> </option>
< ? php parent_dropdown ( $post -> post_parent ); ?>
</ select ></ p >
</ div >
</ fieldset >
< ? php if ( 0 != count ( get_page_templates () ) ) { ?>
< fieldset id = " pageparent " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Page Template:' ) ?> </h3>
< div class = " dbx-content " >< p >< select name = " page_template " >
< option value = 'default' >< ? php _e ( 'Default Template' ); ?> </option>
< ? php page_template_dropdown ( $post -> page_template ); ?>
</ select ></ p >
</ div >
</ fieldset >
< ? php } ?>
< fieldset id = " slugdiv " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Post slug' ) ?> </h3>
< div class = " dbx-content " >< input name = " post_name " type = " text " size = " 13 " id = " post_name " value = " <?php echo $post->post_name ?> " /></ div >
</ fieldset >
2005-09-21 07:13:49 +02:00
< ? php if ( $authors = get_editable_authors ( $current_user -> id ) ) : // TODO: ROLE SYSTEM ?>
2005-07-23 08:22:48 +02:00
< fieldset id = " authordiv " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Post author' ); ?> :</h3>
< div class = " dbx-content " >
< select name = " post_author_override " id = " post_author_override " >
< ? php
foreach ( $authors as $o ) :
$o = get_userdata ( $o -> ID );
if ( $post -> post_author == $o -> ID || ( empty ( $post_ID ) && $user_ID == $o -> ID ) ) $selected = 'selected="selected"' ;
else $selected = '' ;
echo " <option value=' $o->ID ' $selected > $o->display_name </option> " ;
endforeach ;
?>
</ select >
</ div >
2004-10-05 10:27:13 +02:00
</ fieldset >
2005-07-23 08:22:48 +02:00
< ? php endif ; ?>
< fieldset id = " pageorder " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Page Order' ) ?> </h3>
< div class = " dbx-content " >< p >< input name = " menu_order " type = " text " size = " 4 " id = " menu_order " value = " <?php echo $post->menu_order ?> " /></ p ></ div >
</ fieldset >
2006-01-09 23:44:42 +01:00
< ? php do_action ( 'dbx_page_sidebar' ); ?>
2005-07-23 08:22:48 +02:00
</ div >
</ div >
< fieldset id = " titlediv " >
< legend >< ? php _e ( 'Page Title' ) ?> </legend>
< div >< input type = " text " name = " post_title " size = " 30 " tabindex = " 1 " value = " <?php echo $post->post_title ; ?> " id = " title " /></ div >
</ fieldset >
2005-12-09 20:24:14 +01:00
< fieldset id = " <?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?> " >
2004-10-05 10:27:13 +02:00
< legend >< ? php _e ( 'Page Content' ) ?> </legend>
2004-08-10 07:58:19 +02:00
< ? php
$rows = get_settings ( 'default_post_edit_rows' );
if (( $rows < 3 ) || ( $rows > 100 )) {
$rows = 10 ;
}
?>
2005-12-09 20:24:14 +01:00
< ? php the_quicktags (); ?>
2005-11-17 18:47:29 +01:00
2005-12-09 20:24:14 +01:00
< 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>
2004-08-10 07:58:19 +02:00
</ fieldset >
2005-08-23 09:46:33 +02:00
< script type = " text/javascript " >
<!--
edCanvas = document . getElementById ( 'content' );
2005-12-09 20:24:14 +01:00
< ? php if ( user_can_richedit () ) : ?>
// This code is meant to allow tabbing from Title to Post (TinyMCE).
if ( tinyMCE . isMSIE )
document . getElementById ( 'title' ) . onkeydown = function ( e )
{
e = e ? e : window . event ;
if ( e . keyCode == 9 && ! e . shiftKey && ! e . controlKey && ! e . altKey ) {
var i = tinyMCE . selectedInstance ;
if ( typeof i == 'undefined' )
return true ;
tinyMCE . execCommand ( " mceStartTyping " );
this . blur ();
i . contentWindow . focus ();
e . returnValue = false ;
return false ;
}
}
else
document . getElementById ( 'title' ) . onkeypress = function ( e )
{
e = e ? e : window . event ;
if ( e . keyCode == 9 && ! e . shiftKey && ! e . controlKey && ! e . altKey ) {
var i = tinyMCE . selectedInstance ;
if ( typeof i == 'undefined' )
return true ;
tinyMCE . execCommand ( " mceStartTyping " );
this . blur ();
i . contentWindow . focus ();
e . returnValue = false ;
return false ;
}
}
< ? php endif ; ?>
2005-08-23 09:46:33 +02:00
//-->
</ script >
2004-08-10 07:58:19 +02:00
< p class = " submit " >
2005-08-31 01:06:04 +02:00
< ? php if ( $post_ID ) : ?>
< input name = " save " type = " submit " id = " save " tabindex = " 5 " value = " <?php _e('Save and Continue Editing'); ?> " />
2005-11-18 11:03:27 +01:00
< input name = " savepage " type = " submit " id = " savepage " tabindex = " 6 " value = " <?php $post_ID ? _e('Save') : _e('Create New Page') ?> » " />
2005-08-31 01:06:04 +02:00
< ? php else : ?>
< input name = " savepage " type = " submit " id = " savepage " tabindex = " 6 " value = " <?php _e('Create New Page') ?> » " />
< ? php endif ; ?>
< input name = " referredby " type = " hidden " id = " referredby " value = " <?php echo $sendto ; ?> " />
2004-08-10 07:58:19 +02:00
</ p >
2004-10-06 07:11:11 +02:00
2006-01-13 23:42:45 +01:00
< ? php do_action ( 'edit_page_form' ); ?>
2005-10-14 23:52:56 +02:00
< ? php
2006-01-18 20:16:31 +01:00
if ( current_user_can ( 'upload_files' )) {
$uploading_iframe_ID = ( 0 == $post_ID ? $temp_ID : $post_ID );
2006-05-12 01:05:45 +02:00
$uploading_iframe_src = wp_nonce_url ( " inline-uploading.php?action=view&post= $uploading_iframe_ID " , 'inlineuploading' );
2006-01-18 20:16:31 +01:00
$uploading_iframe_src = apply_filters ( 'uploading_iframe_src' , $uploading_iframe_src );
if ( false != $uploading_iframe_src )
echo '<iframe id="uploading" border="0" src="' . $uploading_iframe_src . '">' . __ ( 'This feature requires iframe support.' ) . '</iframe>' ;
}
2005-10-14 23:52:56 +02:00
?>
2004-10-06 07:11:11 +02:00
2005-07-23 08:22:48 +02:00
< div id = " advancedstuff " class = " dbx-group " >
< fieldset id = " postcustom " class = " dbx-box " >
< h3 class = " dbx-handle " >< ? php _e ( 'Custom Fields' ) ?> </h3>
< div id = " postcustomstuff " class = " dbx-content " >
2004-12-09 03:13:47 +01:00
< ? php
if ( $metadata = has_meta ( $post_ID )) {
?>
< ? php
list_meta ( $metadata );
?>
< ? php
}
meta_form ();
?>
</ div >
</ fieldset >
2006-01-09 23:44:42 +01:00
< ? php do_action ( 'dbx_page_advanced' ); ?>
2005-07-23 08:22:48 +02:00
</ div >
< ? php if ( 'edit' == $action ) : ?>
< 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 ) ) . " ') \" " ; ?> />
< ? php endif ; ?>
2004-08-10 07:58:19 +02:00
</ form >
</ div >
2005-07-23 08:22:48 +02:00
2005-10-14 23:52:56 +02:00
</ div >