Projects : mp-wp : mp-wp_genesis

mp-wp/wp-admin/edit-form-comment.php

Dir - Raw

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