[ Index ] |
WordPress Cross Reference |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Edit comment form for inclusion in another file. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 // don't load directly 10 if ( !defined('ABSPATH') ) 11 die('-1'); 12 ?> 13 <form name="post" action="comment.php" method="post" id="post"> 14 <?php wp_nonce_field('update-comment_' . $comment->comment_ID) ?> 15 <div class="wrap"> 16 <h2><?php _e('Edit Comment'); ?></h2> 17 18 <div id="poststuff"> 19 <input type="hidden" name="user_ID" value="<?php echo (int) $user_ID; ?>" /> 20 <input type="hidden" name="action" value="editedcomment" /> 21 <input type="hidden" name="comment_ID" value="<?php echo esc_attr( $comment->comment_ID ); ?>" /> 22 <input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $comment->comment_post_ID ); ?>" /> 23 24 <div id="post-body" class="metabox-holder columns-2"> 25 <div id="post-body-content" class="edit-form-section"> 26 <div id="namediv" class="stuffbox"> 27 <h3><label for="name"><?php _e( 'Author' ) ?></label></h3> 28 <div class="inside"> 29 <table class="form-table editcomment"> 30 <tbody> 31 <tr valign="top"> 32 <td class="first"><?php _e( 'Name:' ); ?></td> 33 <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td> 34 </tr> 35 <tr valign="top"> 36 <td class="first"> 37 <?php 38 if ( $comment->comment_author_email ) { 39 printf( __( 'E-mail (%s):' ), get_comment_author_email_link( __( 'send e-mail' ), '', '' ) ); 40 } else { 41 _e( 'E-mail:' ); 42 } 43 ?></td> 44 <td><input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /></td> 45 </tr> 46 <tr valign="top"> 47 <td class="first"> 48 <?php 49 if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) { 50 $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('visit site') . '</a>'; 51 /** This filter is documented in wp-includes/comment-template.php */ 52 printf( __( 'URL (%s):' ), apply_filters( 'get_comment_author_link', $link ) ); 53 } else { 54 _e( 'URL:' ); 55 } ?></td> 56 <td><input type="text" id="newcomment_author_url" name="newcomment_author_url" size="30" class="code" value="<?php echo esc_attr($comment->comment_author_url); ?>" /></td> 57 </tr> 58 </tbody> 59 </table> 60 <br /> 61 </div> 62 </div> 63 64 <div id="postdiv" class="postarea"> 65 <?php 66 $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close' ); 67 wp_editor( $comment->comment_content, 'content', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) ); 68 wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?> 69 </div> 70 </div><!-- /post-body-content --> 71 72 <div id="postbox-container-1" class="postbox-container"> 73 <div id="submitdiv" class="stuffbox" > 74 <h3><span class='hndle'><?php _e('Status') ?></span></h3> 75 <div class="inside"> 76 <div class="submitbox" id="submitcomment"> 77 <div id="minor-publishing"> 78 79 <div id="minor-publishing-actions"> 80 <div id="preview-action"> 81 <a class="preview button" href="<?php echo get_comment_link(); ?>" target="_blank"><?php _e('View Comment'); ?></a> 82 </div> 83 <div class="clear"></div> 84 </div> 85 86 <div id="misc-publishing-actions"> 87 88 <div class="misc-pub-section misc-pub-comment-status" id="comment-status-radio"> 89 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php /* translators: comment type radio button */ _ex('Approved', 'adjective') ?></label><br /> 90 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php /* translators: comment type radio button */ _ex('Pending', 'adjective') ?></label><br /> 91 <label class="spam"><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?> name="comment_status" value="spam" /><?php /* translators: comment type radio button */ _ex('Spam', 'adjective'); ?></label> 92 </div> 93 94 <?php if ( $ip = get_comment_author_IP() ) : ?> 95 <div class="misc-pub-section misc-pub-comment-author-ip"> 96 <?php _e( 'IP address:' ); ?> <strong><a href="<?php echo esc_url( sprintf( 'http://whois.arin.net/rest/ip/%s', $ip ) ); ?>"><?php echo esc_html( $ip ); ?></a></strong> 97 </div> 98 <?php endif; ?> 99 100 <div class="misc-pub-section curtime misc-pub-curtime"> 101 <?php 102 // translators: Publish box date format, see http://php.net/date 103 $datef = __( 'M j, Y @ G:i' ); 104 $stamp = __('Submitted on: <b>%1$s</b>'); 105 $date = date_i18n( $datef, strtotime( $comment->comment_date ) ); 106 ?> 107 <span id="timestamp"><?php printf($stamp, $date); ?></span> <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a> 108 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0); ?></div> 109 </div> 110 </div> <!-- misc actions --> 111 <div class="clear"></div> 112 </div> 113 114 <div id="major-publishing-actions"> 115 <div id="delete-action"> 116 <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url("comment.php?action=" . ( !EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&c=$comment->comment_ID&_wp_original_http_referer=" . urlencode(wp_get_referer()), 'delete-comment_' . $comment->comment_ID) . "'>" . ( !EMPTY_TRASH_DAYS ? __('Delete Permanently') : __('Move to Trash') ) . "</a>\n"; ?> 117 </div> 118 <div id="publishing-action"> 119 <?php submit_button( __( 'Update' ), 'primary', 'save', false ); ?> 120 </div> 121 <div class="clear"></div> 122 </div> 123 </div> 124 </div> 125 </div><!-- /submitdiv --> 126 </div> 127 128 <div id="postbox-container-2" class="postbox-container"> 129 <?php 130 /** This action is documented in wp-admin/edit-form-advanced.php */ 131 do_action( 'add_meta_boxes', 'comment', $comment ); 132 133 /** 134 * Fires when comment-specific meta boxes are added. 135 * 136 * @since 3.0.0 137 * 138 * @param object $comment Comment object. 139 */ 140 do_action( 'add_meta_boxes_comment', $comment ); 141 142 do_meta_boxes(null, 'normal', $comment); 143 144 ?> 145 </div> 146 147 <input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID) ?>" /> 148 <input type="hidden" name="p" value="<?php echo esc_attr($comment->comment_post_ID) ?>" /> 149 <input name="referredby" type="hidden" id="referredby" value="<?php echo esc_url( wp_get_referer() ); ?>" /> 150 <?php wp_original_referer_field(true, 'previous'); ?> 151 <input type="hidden" name="noredir" value="1" /> 152 153 </div><!-- /post-body --> 154 </div> 155 </div> 156 </form> 157 158 <script type="text/javascript"> 159 try{document.post.name.focus();}catch(e){} 160 </script>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 25 01:41:18 2014 | WordPress honlapkészítés: online1.hu |