mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
c81c012981
git-svn-id: http://svn.automattic.com/wordpress/trunk@2441 1a063a9b-81f0-0310-95a4-ce76da25c4cd
204 lines
7.7 KiB
PHP
204 lines
7.7 KiB
PHP
<?php
|
|
$messages[1] = __('Post updated');
|
|
$messages[2] = __('Custom field updated');
|
|
$messages[3] = __('Custom field deleted.');
|
|
?>
|
|
<?php if (isset($_GET['message'])) : ?>
|
|
<div class="updated"><p><?php echo $messages[$_GET['message']]; ?></p></div>
|
|
<?php endif; ?>
|
|
|
|
<form name="post" action="post.php" method="post" id="post">
|
|
|
|
<div class="wrap">
|
|
<h2><?php _e('Write Post'); ?></h2>
|
|
<?php
|
|
|
|
if (0 == $post_ID) {
|
|
$form_action = 'post';
|
|
} else {
|
|
$form_action = 'editpost';
|
|
$form_extra = "<input type='hidden' name='post_ID' value='$post_ID' />";
|
|
}
|
|
|
|
$form_pingback = '<input type="hidden" name="post_pingback" value="' . get_option('default_pingback_flag') . '" id="post_pingback" />';
|
|
|
|
$form_prevstatus = '<input type="hidden" name="prev_status" value="'.$post_status.'" />';
|
|
|
|
$form_trackback = '<input type="text" name="trackback_url" style="width: 415px" id="trackback" tabindex="7" value="'. str_replace("\n", ' ', $to_ping) .'" />';
|
|
|
|
if ('' != $pinged) {
|
|
$pings .= '<p>'. __('Already pinged:') . '</p><ul>';
|
|
$already_pinged = explode("\n", trim($pinged));
|
|
foreach ($already_pinged as $pinged_url) {
|
|
$pings .= "\n\t<li>$pinged_url</li>";
|
|
}
|
|
$pings .= '</ul>';
|
|
}
|
|
|
|
$saveasdraft = '<input name="save" type="submit" id="save" tabindex="6" value="' . __('Save and Continue Editing') . '" />';
|
|
|
|
if (empty($post_status)) $post_status = 'draft';
|
|
|
|
?>
|
|
|
|
<input type="hidden" name="user_ID" value="<?php echo $user_ID ?>" />
|
|
<input type="hidden" name="action" value="<?php echo $form_action ?>" />
|
|
<input type="hidden" name="post_author" value="<?php echo $post_author ?>" />
|
|
|
|
<?php echo $form_extra ?>
|
|
<?php if (isset($_GET['message']) && 2 > $_GET['message']) : ?>
|
|
<script type="text/javascript">
|
|
<!--
|
|
function focusit() {
|
|
// focus on first input field
|
|
document.post.title.focus();
|
|
}
|
|
window.onload = focusit;
|
|
//-->
|
|
</script>
|
|
<?php endif; ?>
|
|
<div id="poststuff">
|
|
<fieldset id="titlediv">
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#title" title="<?php _e('Help on titles') ?>"><?php _e('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="<?php _e('Help on categories') ?>"><?php _e('Categories') ?></a></legend>
|
|
<div><?php dropdown_categories(get_settings('default_category')); ?></div>
|
|
</fieldset>
|
|
|
|
<fieldset id="commentstatusdiv">
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#comments" title="<?php _e('Help on comment status') ?>"><?php _e('Discussion') ?></a></legend>
|
|
<div>
|
|
<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($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($ping_status, 'open'); ?> /> <?php _e('Allow Pings') ?></label>
|
|
</div>
|
|
</fieldset>
|
|
<fieldset id="postpassworddiv">
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#post_password" title="<?php _e('Help on post password') ?>"><?php _e('Post Password') ?></a></legend>
|
|
<div><input name="post_password" type="text" size="13" id="post_password" value="<?php echo $post_password ?>" /></div>
|
|
</fieldset>
|
|
|
|
<br />
|
|
<fieldset id="postexcerpt">
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#excerpt" title="<?php _e('Help with excerpts') ?>"><?php _e('Excerpt') ?></a></legend>
|
|
<div><textarea rows="1" cols="40" name="excerpt" tabindex="4" id="excerpt"><?php echo $excerpt ?></textarea></div>
|
|
</fieldset>
|
|
<fieldset id="postdiv">
|
|
<legend><a href="http://wordpress.org/docs/reference/post/#post" title="<?php _e('Help with post field') ?>"><?php _e('Post') ?></a></legend>
|
|
<?php the_quicktags(); ?>
|
|
<?php
|
|
$rows = get_settings('default_post_edit_rows');
|
|
if (($rows < 3) || ($rows > 100)) {
|
|
$rows = 10;
|
|
}
|
|
?>
|
|
<div><textarea rows="<?php echo $rows; ?>" cols="40" name="content" tabindex="5" id="content"><?php echo $content ?></textarea></div>
|
|
</fieldset>
|
|
<?php
|
|
?>
|
|
<script type="text/javascript">
|
|
<!--
|
|
edCanvas = document.getElementById('content');
|
|
//-->
|
|
</script>
|
|
|
|
<?php echo $form_pingback ?>
|
|
<?php echo $form_prevstatus ?>
|
|
|
|
|
|
<p class="submit"><?php echo $saveasdraft; ?> <input type="submit" name="submit" value="<?php _e('Save') ?>" style="font-weight: bold;" tabindex="6" />
|
|
<?php
|
|
if ('publish' != $post_status || 0 == $post_ID) {
|
|
?>
|
|
<?php if ( user_can_create_post($user_ID) ) : ?>
|
|
<input name="publish" type="submit" id="publish" tabindex="10" value="<?php _e('Publish') ?>" />
|
|
<?php endif; ?>
|
|
<?php
|
|
}
|
|
?>
|
|
<input name="referredby" type="hidden" id="referredby" value="<?php echo wp_specialchars($_SERVER['HTTP_REFERER']); ?>" />
|
|
</p>
|
|
|
|
<?php do_action('edit_form_advanced', ''); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="wrap">
|
|
<h2><?php _e('Advanced'); ?></h2>
|
|
|
|
<table width="100%" cellspacing="2" cellpadding="5" class="editform">
|
|
<tr>
|
|
<th scope="row" valign="top"><?php _e('Post Status') ?>:</th>
|
|
<td><?php if ( user_can_create_post($user_ID) ) : ?>
|
|
<label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post_status, 'publish'); ?> /> <?php _e('Published') ?></label><br />
|
|
<?php endif; ?>
|
|
<label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post_status, 'draft'); ?> /> <?php _e('Draft') ?></label><br />
|
|
<label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post_status, 'private'); ?> /> <?php _e('Private') ?></label></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row" valign="top"><?php _e('Send trackbacks to'); ?>:</th>
|
|
<td><?php echo $form_trackback; ?> <br />
|
|
<?php _e('Separate multiple URIs with spaces'); ?></td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<th scope="row" width="25%"><?php _e('Post slug') ?>:</th>
|
|
<td><input name="post_name" type="text" size="25" id="post_name" value="<?php echo $post_name ?>" /></td>
|
|
</tr>
|
|
<?php if ($user_level > 7 && $users = $wpdb->get_results("SELECT ID, user_login, user_firstname, user_lastname FROM $wpdb->users WHERE user_level <= $user_level AND user_level > 0") ) : ?>
|
|
<tr>
|
|
<th scope="row"><?php _e('Post author'); ?>:</th>
|
|
<td>
|
|
<select name="post_author_override" id="post_author_override">
|
|
<?php
|
|
foreach ($users as $o) :
|
|
if ( $post_author == $o->ID ) $selected = 'selected="selected"';
|
|
else $selected = '';
|
|
echo "<option value='$o->ID' $selected>$o->user_login ($o->user_firstname $o->user_lastname)</option>";
|
|
endforeach;
|
|
?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<?php if ($user_level > 4) : ?>
|
|
<tr>
|
|
<th scope="row"><?php _e('Edit time'); ?>:</th>
|
|
<td><?php touch_time(($action == 'edit')); ?></td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<th scope="row"><?php _e('Delete'); ?>:</th>
|
|
<td><?php if ('edit' == $action) : ?>
|
|
<input name="deletepost" class="button" type="submit" id="deletepost" tabindex="10" value="<?php _e('Delete this post') ?>" <?php echo "onclick=\"return confirm('" . sprintf(__("You are about to delete this post \'%s\'\\n \'Cancel\' to stop, \'OK\' to delete."), addslashes($edited_post_title) ) . "')\""; ?> />
|
|
<?php endif; ?></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<fieldset id="postcustom">
|
|
<legend><?php _e('Custom Fields') ?></legend>
|
|
<div id="postcustomstuff">
|
|
<?php
|
|
if($metadata = has_meta($post_ID)) {
|
|
?>
|
|
<?php
|
|
list_meta($metadata);
|
|
?>
|
|
<?php
|
|
}
|
|
meta_form();
|
|
?>
|
|
</div>
|
|
</fieldset>
|
|
<?php
|
|
if ('' != $pinged)
|
|
echo $pings;
|
|
?>
|
|
</div>
|
|
|
|
</form>
|