2003-10-14 02:54:09 +02:00
2003-09-25 00:00:00 +02:00
< div class = " wrap " >
< ? php
2004-03-01 07:13:32 +01:00
$allowed_users = explode ( " " , trim ( get_settings ( 'fileupload_allowedusers' )));
2003-10-17 21:26:05 +02:00
2004-04-20 06:15:18 +02:00
$submitbutton_text = __ ( 'Blog this!' );
$toprow_title = __ ( 'New Post' );
2003-12-28 12:44:05 +01:00
$form_action = 'post' ;
$form_extra = '' ;
2004-03-01 07:13:32 +01:00
if ( get_settings ( 'use_pingback' )) {
2003-12-28 12:44:05 +01:00
$form_pingback = '<input type="checkbox" class="checkbox" name="post_pingback" value="1" ' ;
if ( $post_pingback ) $form_pingback .= 'checked="checked" ' ;
2004-05-05 10:27:43 +02:00
$form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback">' . sprintf ( __ ( '<strong>PingBack</strong> the <abbr title="Universal Resource Identifier">URI</abbr>s in this post</label> <a href="%s" title="Help on Pingbacks">?</a><br />' ), 'http://wordpress.org/docs/reference/post/#pingback' );
2003-12-28 12:44:05 +01:00
} else {
$form_pingback = '' ;
}
2004-03-01 07:13:32 +01:00
if ( get_settings ( 'use_trackback' )) {
2004-05-05 10:27:43 +02:00
$form_trackback = '<p><label for="trackback">' . sprintf ( __ ( '<a href="%s" title="Help on trackbacks"><strong>TrackBack</strong> an <acronym title="Uniform Resource Locator">URL</acronym></a>:</label> (Separate multiple <abbr title="Universal Resource Identifier">URI</abbr>s with spaces.)<br />' ), 'http://wordpress.org/docs/reference/post/#trackback' ) .
2004-04-20 06:15:18 +02:00
'<input type="text" name="trackback_url" style="width: 360px" id="trackback" tabindex="7" /></p>' ;
2003-12-28 12:44:05 +01:00
} else {
$form_trackback = '' ;
2003-09-25 00:00:00 +02:00
}
2003-12-28 12:44:05 +01:00
$colspan = 3 ;
$saveasdraft = '' ;
2003-09-25 00:00:00 +02:00
?>
2003-12-11 01:22:36 +01:00
< form name = " post " action = " post.php " method = " post " id = " post " >
2004-01-03 01:13:11 +01:00
< ? php
2004-05-08 01:56:33 +02:00
if ( isset ( $mode ) && 'bookmarklet' == $mode ) {
2004-01-03 01:13:11 +01:00
echo '<input type="hidden" name="mode" value="bookmarklet" />' ;
}
?>
2003-09-25 00:00:00 +02:00
< input type = " hidden " name = " user_ID " value = " <?php echo $user_ID ?> " />
< input type = " hidden " name = " action " value = '<?php echo $form_action . $form_extra ?>' />
< script type = " text/javascript " >
2003-12-05 10:41:27 +01:00
<!--
2003-09-25 00:00:00 +02:00
function focusit () {
// focus on first input field
document . post . title . focus ();
}
window . onload = focusit ;
2003-12-05 10:41:27 +01:00
//-->
2003-09-25 00:00:00 +02:00
</ script >
2003-12-28 12:44:05 +01:00
< style media = " screen " type = " text/css " >
#titlediv, #postpassworddiv {
height : 3.5 em ;
}
</ style >
2003-12-05 02:44:42 +01:00
< div id = " poststuff " >
2003-12-05 10:41:27 +01:00
< fieldset id = " titlediv " >
2004-04-20 06:15:18 +02:00
< legend >< a href = " http://wordpress.org/docs/reference/post/#title " title = " <?php _e('Help on titles') ?> " >< ? php _e ( 'Title' ) ?> </a></legend>
2003-12-05 10:41:27 +01:00
< div >< input type = " text " name = " post_title " size = " 30 " tabindex = " 1 " value = " <?php echo $edited_post_title ; ?> " id = " title " /></ div >
</ fieldset >
< fieldset id = " categorydiv " >
2004-04-20 06:15:18 +02:00
< legend >< a href = " http://wordpress.org/docs/reference/post/#category " title = " <?php _e('Help on categories') ?> " >< ? php _e ( 'Categories' ) ?> </a></legend>
2003-12-05 10:41:27 +01:00
< div >< ? php dropdown_categories ( $default_post_cat ); ?> </div>
</ fieldset >
2003-09-25 00:00:00 +02:00
2003-12-12 00:08:57 +01:00
< br />
2004-01-03 01:13:11 +01:00
< fieldset id = " postdiv " >
2004-04-20 06:15:18 +02:00
< legend >< a href = " http://wordpress.org/docs/reference/post/#post " title = " <?php _e('Help with post field') ?> " >< ? php _e ( 'Post' ) ?> </a></legend>
2003-12-05 10:41:27 +01:00
< div id = " quicktags " >
2003-09-25 00:00:00 +02:00
< ? php
2004-04-24 23:21:19 +02:00
if ( 'bookmarklet' != $mode ) {
2004-04-20 06:15:18 +02:00
echo '<a href="http://wordpress.org/docs/reference/post/#quicktags" title="' . __ ( 'Help with quicktags' ) . '">' . __ ( 'Quicktags' ) . '</a>: ' ;
2003-12-11 01:22:36 +01:00
include ( 'quicktags.php' );
2003-09-25 00:00:00 +02:00
}
?>
2003-12-05 10:41:27 +01:00
</ div >
2003-09-25 00:00:00 +02:00
< ? php
$rows = get_settings ( 'default_post_edit_rows' );
if (( $rows < 3 ) || ( $rows > 100 )) {
2003-12-05 02:44:42 +01:00
$rows = 10 ;
2003-09-25 00:00:00 +02:00
}
?>
2003-12-05 10:41:27 +01:00
< div >< textarea rows = " <?php echo $rows ; ?> " cols = " 40 " name = " content " tabindex = " 4 " id = " content " >< ? php echo $content ?> </textarea></div>
</ fieldset >
2004-04-24 23:21:19 +02:00
2003-11-06 08:48:53 +01:00
< script type = " text/javascript " language = " JavaScript " >
2003-09-25 00:00:00 +02:00
<!--
edCanvas = document . getElementById ( 'content' );
//-->
</ script >
< ? php echo $form_pingback ?>
2004-02-02 09:21:17 +01:00
< ? php echo $form_trackback ; ?>
2004-05-08 03:15:03 +02:00
< p class = " submit " >< input name = " saveasdraft " type = " submit " id = " saveasdraft " tabindex = " 9 " value = " <?php _e('Save as Draft') ?> " />
2004-04-20 06:15:18 +02:00
< input name = " saveasprivate " type = " submit " id = " saveasprivate " tabindex = " 10 " value = " <?php _e('Save as Private') ?> " />
< input name = " publish " type = " submit " id = " publish " tabindex = " 6 " style = " font-weight: bold; " value = " <?php _e('Publish') ?> " />
2004-01-03 01:13:11 +01:00
< ? php if ( 'bookmarklet' != $mode ) {
2004-04-20 06:15:18 +02:00
echo '<input name="advanced" type="submit" id="advancededit" tabindex="7" value="' . __ ( 'Advanced Editing »' ) . '" />' ;
2004-01-03 01:13:11 +01:00
} ?>
2004-04-21 00:56:47 +02:00
< input name = " referredby " type = " hidden " id = " referredby " value = " <?php echo $_SERVER['HTTP_REFERER'] ; ?> " />
2003-10-26 21:34:24 +01:00
</ p >
2004-02-05 15:28:02 +01:00
2003-10-17 21:26:05 +02:00
</ div >
2003-12-05 10:41:27 +01:00
</ form >
2003-12-05 02:44:42 +01:00
</ div >