]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/edit-form-comment.php
Wizard 2.8.2-scripts
[autoinstalls/wordpress.git] / wp-admin / edit-form-comment.php
1 <?php
2 /**
3  * Edit comment form for inclusion in another file.
4  *
5  * @package WordPress
6  * @subpackage Administration
7  */
8
9 /**
10  * @var string
11  */
12 $submitbutton_text = __('Edit Comment');
13 $toprow_title = sprintf(__('Editing Comment # %s'), $comment->comment_ID);
14 $form_action = 'editedcomment';
15 $form_extra = "' />\n<input type='hidden' name='comment_ID' value='" . esc_attr($comment->comment_ID) . "' />\n<input type='hidden' name='comment_post_ID' value='" . esc_attr($comment->comment_post_ID);
16 $comment->comment_author_email = esc_attr($comment->comment_author_email);
17 ?>
18
19 <form name="post" action="comment.php" method="post" id="post">
20 <?php wp_nonce_field('update-comment_' . $comment->comment_ID) ?>
21 <div class="wrap">
22 <?php screen_icon(); ?>
23 <h2><?php _e('Edit Comment'); ?></h2>
24
25 <div id="poststuff" class="metabox-holder has-right-sidebar">
26 <input type="hidden" name="user_ID" value="<?php echo (int) $user_ID ?>" />
27 <input type="hidden" name="action" value='<?php echo $form_action . $form_extra ?>' />
28
29 <div id="side-info-column" class="inner-sidebar">
30 <div id="submitdiv" class="stuffbox" >
31 <h3><span class='hndle'><?php _e('Status') ?></span></h3>
32 <div class="inside">
33 <div class="submitbox" id="submitcomment">
34 <div id="minor-publishing">
35
36 <div id="minor-publishing-actions">
37 <div id="preview-action">
38 <a class="preview button" href="<?php echo get_comment_link(); ?>" target="_blank"><?php _e('View Comment'); ?></a>
39 </div>
40 <div class="clear"></div>
41 </div>
42
43 <div id="misc-publishing-actions">
44
45 <div class="misc-pub-section" id="comment-status-radio">
46 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php /* translators: comment type radio button */ echo _x('Approved', 'adjective') ?></label><br />
47 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php /* translators: comment type radio button */ echo _x('Pending', 'adjective') ?></label><br />
48 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php /* translators: comment type radio button */ echo _x('Spam', 'adjective'); ?></label>
49 </div>
50
51 <div class="misc-pub-section curtime misc-pub-section-last">
52 <?php
53 // translators: Publish box date formt, see http://php.net/date
54 $datef = __( 'M j, Y @ G:i' );
55 $stamp = __('Submitted on: <b>%1$s</b>');
56 $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
57 ?>
58 <span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a>
59 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0, 5); ?></div>
60 </div>
61 </div> <!-- misc actions -->
62 <div class="clear"></div>
63 </div>
64
65 <div id="major-publishing-actions">
66 <div id="delete-action">
67 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url("comment.php?action=deletecomment&amp;c=$comment->comment_ID&amp;_wp_original_http_referer=" . urlencode(wp_get_referer()), 'delete-comment_' . $comment->comment_ID) . "' onclick=\"if ( confirm('" . esc_js(__("You are about to delete this comment. \n  'Cancel' to stop, 'OK' to delete.")) . "') ){return true;}return false;\">" . __('Delete') . "</a>\n"; ?>
68 </div>
69 <div id="publishing-action">
70 <input type="submit" name="save" value="<?php esc_attr_e('Update Comment'); ?>" tabindex="4" class="button-primary" />
71 </div>
72 <div class="clear"></div>
73 </div>
74 </div>
75 </div>
76 </div>
77 </div>
78
79 <div id="post-body">
80 <div id="post-body-content">
81 <div id="namediv" class="stuffbox">
82 <h3><label for="name"><?php _e( 'Author' ) ?></label></h3>
83 <div class="inside">
84 <table class="form-table editcomment">
85 <tbody>
86 <tr valign="top">
87         <td class="first"><?php _e( 'Name:' ); ?></td>
88         <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" tabindex="1" id="name" /></td>
89 </tr>
90 <tr valign="top">
91         <td class="first">
92         <?php
93                 if ( $comment->comment_author_email ) {
94                         printf( __( 'E-mail (%s):' ), get_comment_author_email_link( __( 'send e-mail' ), '', '' ) );
95                 } else {
96                         _e( 'E-mail:' );
97                 }
98 ?></td>
99         <td><input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" tabindex="2" id="email" /></td>
100 </tr>
101 <tr valign="top">
102         <td class="first">
103         <?php
104                 if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) {
105                         $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('visit site') . '</a>';
106                         printf( __( 'URL (%s):' ), apply_filters('get_comment_author_link', $link ) );
107                 } else {
108                         _e( 'URL:' );
109                 } ?></td>
110         <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr($url); ?>" tabindex="3" /></td>
111 </tr>
112 </tbody>
113 </table>
114 <br />
115 </div>
116 </div>
117
118 <div id="postdiv" class="postarea">
119 <?php the_editor($comment->comment_content, 'content', 'newcomment_author_url', false, 4); ?>
120 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
121 </div>
122
123 <?php do_meta_boxes('comment', 'normal', $comment); ?>
124
125 <input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID) ?>" />
126 <input type="hidden" name="p" value="<?php echo esc_attr($comment->comment_post_ID) ?>" />
127 <input name="referredby" type="hidden" id="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
128 <?php wp_original_referer_field(true, 'previous'); ?>
129 <input type="hidden" name="noredir" value="1" />
130
131 </div>
132 </div>
133 </div>
134 </div>
135 </form>
136
137 <script type="text/javascript">
138 try{document.post.name.focus();}catch(e){}
139 </script>