2003-10-14 02:54:09 +02:00
2003-09-25 00:00:00 +02:00
< div class = " wrap " >
< ? php
2003-10-17 21:26:05 +02:00
$allowed_users = explode ( " " , trim ( $fileupload_allowedusers ));
2003-09-25 00:00:00 +02:00
function selected ( $selected , $current ) {
if ( $selected == $current ) echo ' selected="selected"' ;
}
2003-11-30 23:13:53 +01:00
function checked ( $checked , $current ) {
if ( $checked == $current ) echo ' checked="checked"' ;
}
2003-09-25 00:00:00 +02:00
switch ( $action ) {
case 'post' :
$submitbutton_text = 'Blog this!' ;
$toprow_title = 'New Post' ;
$form_action = 'post' ;
$form_extra = '' ;
if ( $use_pingback ) {
$form_pingback = '<input type="checkbox" class="checkbox" name="post_pingback" value="1" ' ;
if ( $post_pingback ) $form_pingback .= 'checked="checked" ' ;
$form_pingback .= 'tabindex="7" id="pingback" /> <label for="pingback"><strong>PingBack</strong> the <acronym title="Uniform Resource Locators">URL</acronym>s in this post</label> <a href="http://wordpress.org/docs/reference/post/#pingback" title="Help on Pingbacks">?</a><br />' ;
} else {
$form_pingback = '' ;
}
if ( $use_trackback ) {
$form_trackback = ' < p >< label for = " trackback " >< a href = " http://wordpress.org/docs/reference/post/#trackback " title = " Help on trackbacks " >< strong > TrackBack </ strong > an < acronym title = " Uniform Resource Locator " > URL </ acronym ></ a >:</ label > ( Separate multiple < acronym title = " Uniform Resource Locator " > URL </ acronym > s with commas . ) < br />
< input type = " text " name = " trackback_url " style = " width: 415px " id = " trackback " tabindex = " 7 " /></ p > ' ;
} else {
$form_trackback = '' ;
}
$colspan = 3 ;
2003-11-06 08:48:53 +01:00
$saveasdraft = '<input name="save" type="submit" id="save" tabindex="6" value="Save and Continue Editing" />' ;
2003-09-25 00:00:00 +02:00
break ;
case " edit " :
$submitbutton_text = 'Edit this!' ;
$toprow_title = 'Editing Post #' . $postdata [ 'ID' ];
$form_action = 'editpost' ;
2003-12-05 10:41:27 +01:00
$form_extra = " ' /> \n <input type='hidden' name='post_ID' value=' $post->ID " ;
2003-09-25 00:00:00 +02:00
$colspan = 2 ;
$form_pingback = '<input type="hidden" name="post_pingback" value="0" />' ;
$form_prevstatus = '<input type="hidden" name="prev_status" value="' . $post_status . '" />' ;
$form_trackback = '' ;
break ;
case " editcomment " :
$submitbutton_text = 'Edit this!' ;
$toprow_title = 'Editing Comment # ' . $commentdata [ 'comment_ID' ];
$form_action = 'editedcomment' ;
$form_extra = " ' /> \n <input type='hidden' name='comment_ID' value=' $comment ' /> \n <input type='hidden' name='comment_post_ID' value=' " . $commentdata [ " comment_post_ID " ];
$colspan = 3 ;
$form_pingback = '<input type="hidden" name="post_pingback" value="0" />' ;
$form_trackback = '' ;
break ;
}
?>
2003-12-11 01:22:36 +01:00
< form name = " post " action = " post.php " method = " post " id = " post " >
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 ?>' />
2003-11-30 23:13:53 +01:00
< ? php if ( $action != 'editcomment' ) {
2003-09-25 00:00:00 +02:00
// this is for everything but comment editing
?>
< 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-05 02:44:42 +01:00
< div id = " poststuff " >
2003-12-05 10:41:27 +01:00
< fieldset id = " titlediv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#title " title = " Help on titles " > Title </ a ></ legend >
< div >< input type = " text " name = " post_title " size = " 30 " tabindex = " 1 " value = " <?php echo $edited_post_title ; ?> " id = " title " /></ div >
</ fieldset >
< fieldset id = " categorydiv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#category " title = " Help on categories " > Categories </ a ></ legend >
< div >< ? php dropdown_categories ( $default_post_cat ); ?> </div>
</ fieldset >
< fieldset id = " poststatusdiv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#post_status " title = " Help on post status " > Post Status </ a ></ legend >
< div >< label for = " post_status_publish " class = " selectit " >< input id = " post_status_publish " name = " post_status " type = " radio " value = " publish " < ? php checked ( $post_status , 'publish' ); ?> /> Publish</label>
< label for = " post_status_draft " class = " selectit " >< input id = " post_status_draft " name = " post_status " type = " radio " value = " draft " < ? php checked ( $post_status , 'draft' ); ?> /> Draft</label>
< label for = " post_status_private " class = " selectit " >< input id = " post_status_private " name = " post_status " type = " radio " value = " private " < ? php checked ( $post_status , 'private' ); ?> /> Private</label></div>
</ fieldset >
< fieldset id = " commentstatusdiv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#comments " title = " Help on comment status " > Comments </ a ></ legend >
< div >< label for = " comment_status_open " class = " selectit " >< input id = " comment_status_open " name = " comment_status " type = " radio " value = " open " < ? php checked ( $comment_status , 'open' ); ?> /> Open</label>
< label for = " comment_status_closed " class = " selectit " >< input id = " comment_status_closed " name = " comment_status " type = " radio " value = " closed " < ? php checked ( $comment_status , 'closed' ); ?> /> Closed</label></div>
</ fieldset >
< fieldset id = " pingstatusdiv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#pings " title = " Help on ping status " > Pings </ a ></ legend >
< div >< label for = " ping_status_open " class = " selectit " >< input id = " ping_status_open " name = " ping_status " type = " radio " value = " open " < ? php checked ( $ping_status , 'open' ); ?> /> Open</label>
< label for = " ping_status_closed " class = " selectit " >< input id = " ping_status_closed " name = " ping_status " type = " radio " value = " closed " < ? php checked ( $ping_status , 'closed' ); ?> /> Closed</label></div>
</ fieldset >
< fieldset id = " postpassworddiv " >
< legend >< a href = " http://wordpress.org/docs/reference/post/#post_password " title = " Help on post password " > Post Password </ a ></ legend >
< div >< input name = " post_password " type = " text " size = " 18 " id = " post_password " value = " <?php echo $post_password ?> " /></ div >
</ fieldset >
2003-09-25 00:00:00 +02:00
2003-12-05 10:41:27 +01:00
< ? php
2003-09-25 00:00:00 +02:00
} else {
// this is for comment editing
?>
< script type = " text/javascript " >
function focusit () {
// focus on first input field
document . post . name . focus ();
}
window . onload = focusit ;
</ script >
< table >
< tr >
< td >
< label for = " name " > Name :</ label >< br />
< input type = " text " name = " newcomment_author " size = " 22 " value = " <?php echo format_to_edit( $commentdata['comment_author'] ) ?> " tabindex = " 1 " id = " name " /></ td >
< td >
< label for = " email " > E - mail :</ label >< br />
< input type = " text " name = " newcomment_author_email " size = " 30 " value = " <?php echo format_to_edit( $commentdata['comment_author_email'] ) ?> " tabindex = " 2 " id = " email " />
</ td >
< td >
< label for = " URL " > URL :</ label >< br />
< input type = " text " name = " newcomment_author_url " size = " 35 " value = " <?php echo format_to_edit( $commentdata['comment_author_url'] ) ?> " tabindex = " 3 " id = " URL " />
</ td >
</ tr >
</ table >
< ? php
} // end else comment editing
?>
< ? php
if ( $action != 'editcomment' ) {
?>
2003-12-12 00:08:57 +01:00
< br />
< fieldset style = " clear:both " >
2003-12-05 10:41:27 +01:00
< legend >< a href = " http://wordpress.org/docs/reference/post/#excerpt " title = " Help with excerpts " > Excerpt </ a ></ legend >
< div >< textarea rows = " 2 " cols = " 40 " name = " excerpt " tabindex = " 4 " id = " excerpt " >< ? php echo $excerpt ?> </textarea></div>
</ fieldset >
2003-09-25 00:00:00 +02:00
< ? php
} // if not a comment
?>
2003-12-05 10:41:27 +01:00
< fieldset >
2003-09-25 00:00:00 +02:00
< ? php
if ( $action != 'editcomment' ) {
2003-12-05 10:41:27 +01:00
echo '<legend><a href="http://wordpress.org/docs/reference/post/#post" title="Help with post field">Post</a></legend>' ;
2003-09-25 00:00:00 +02:00
} else {
2003-12-05 10:41:27 +01:00
echo '<legend>Comment</legend>' ;
2003-09-25 00:00:00 +02:00
}
?>
2003-12-05 10:41:27 +01:00
< div id = " quicktags " >
2003-09-25 00:00:00 +02:00
< ? php
if ( $use_quicktags ) {
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 >
2003-09-25 00:00:00 +02:00
< ? php
if ( $use_quicktags ) {
?>
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
}
2003-11-10 01:04:47 +01:00
if ( $action != 'editcomment' ) {
if ( get_settings ( 'use_geo_positions' )) {
if ( empty ( $edited_lat )) {
if ( get_settings ( 'use_default_geourl' )) {
$edited_lat = get_settings ( 'default_geourl_lat' );
$edited_lon = get_settings ( 'default_geourl_lon' );
}
2003-11-05 01:44:03 +01:00
}
2003-09-25 00:00:00 +02:00
?>
< label for = " post_latf " > Latitude :</ label >< input size = " 8 " type = " text " value = " <?php echo $edited_lat ; ?> " name = " post_latf " >& nbsp ;
< label for = " post_lonf " > Longitude :</ label >< input size = " 8 " type = " text " value = " <?php echo $edited_lon ; ?> " name = " post_lonf " >& nbsp ; < a href = " http://www.geourl.org/resources.html " rel = " external " > click for Geo Info </ a >
< br >
< ? php
2003-11-10 01:04:47 +01:00
}
2003-09-25 00:00:00 +02:00
}
?>
< ? php echo $form_pingback ?>
< ? php echo $form_prevstatus ?>
2003-11-06 08:48:53 +01:00
< p >< ? php echo $saveasdraft ; ?> <input type="submit" name="submit" value="<?php echo $submitbutton_text ?>" style="font-weight: bold;" tabindex="6" />
2003-10-26 21:34:24 +01:00
< input name = " referredby " type = " hidden " id = " referredby " value = " <?php echo $HTTP_SERVER_VARS['HTTP_REFERER'] ; ?> " />
</ p >
2003-09-25 00:00:00 +02:00
2003-11-10 01:04:47 +01:00
< ? php
if ( $action != 'editcomment' ) {
if ( ( $use_fileupload ) && ( $user_level >= $fileupload_minlevel )
&& ( in_array ( $user_login , $allowed_users ) || ( trim ( $fileupload_allowedusers ) == " " )) ) { ?>
2003-09-25 00:00:00 +02:00
< input type = " button " value = " upload a file/image " onclick = " launchupload(); " class = " search " tabindex = " 10 " />
< ? php }
2003-11-10 01:04:47 +01:00
}
2003-09-25 00:00:00 +02:00
echo $form_trackback ;
// if the level is 5+, allow user to edit the timestamp - not on 'new post' screen though
// if (($user_level > 4) && ($action != "post"))
if ( $user_level > 4 ) {
touch_time (( $action == 'edit' ));
}
if ( 'edit' == $action ) echo "
2003-12-11 20:16:43 +01:00
< p >< a href = 'post.php?action=delete&post=$post->ID' onclick = \ " return confirm('You are about to delete this post \ ' " . addslashes ( $edited_post_title ) . " \ ' \\ n \ 'Cancel \ ' to stop, \ 'OK \ ' to delete.') \" >Delete this post</a></p> " ;
2003-09-25 00:00:00 +02: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 >