PageRenderTime 51ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

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

https://bitbucket.org/julianelve/vendor-wordpress
PHP | 146 lines | 121 code | 17 blank | 8 comment | 8 complexity | 05bc54f473f209dd91d8e80d9f26310d MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, GPL-2.0
  1. <?php
  2. /**
  3. * Edit comment form for inclusion in another file.
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. */
  8. // don't load directly
  9. if ( !defined('ABSPATH') )
  10. die('-1');
  11. ?>
  12. <form name="post" action="comment.php" method="post" id="post">
  13. <?php wp_nonce_field('update-comment_' . $comment->comment_ID) ?>
  14. <div class="wrap">
  15. <?php screen_icon(); ?>
  16. <h2><?php _e('Edit Comment'); ?></h2>
  17. <div id="poststuff">
  18. <input type="hidden" name="user_ID" value="<?php echo (int) $user_ID; ?>" />
  19. <input type="hidden" name="action" value="editedcomment" />
  20. <input type="hidden" name="comment_ID" value="<?php echo esc_attr( $comment->comment_ID ); ?>" />
  21. <input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $comment->comment_post_ID ); ?>" />
  22. <div id="post-body" class="metabox-holder columns-2">
  23. <div id="post-body-content">
  24. <div id="namediv" class="stuffbox">
  25. <h3><label for="name"><?php _e( 'Author' ) ?></label></h3>
  26. <div class="inside">
  27. <table class="form-table editcomment">
  28. <tbody>
  29. <tr valign="top">
  30. <td class="first"><?php _e( 'Name:' ); ?></td>
  31. <td><input type="text" name="newcomment_author" size="30" value="<?php echo esc_attr( $comment->comment_author ); ?>" id="name" /></td>
  32. </tr>
  33. <tr valign="top">
  34. <td class="first">
  35. <?php
  36. if ( $comment->comment_author_email ) {
  37. printf( __( 'E-mail (%s):' ), get_comment_author_email_link( __( 'send e-mail' ), '', '' ) );
  38. } else {
  39. _e( 'E-mail:' );
  40. }
  41. ?></td>
  42. <td><input type="text" name="newcomment_author_email" size="30" value="<?php echo $comment->comment_author_email; ?>" id="email" /></td>
  43. </tr>
  44. <tr valign="top">
  45. <td class="first">
  46. <?php
  47. if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) {
  48. $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('visit site') . '</a>';
  49. printf( __( 'URL (%s):' ), apply_filters('get_comment_author_link', $link ) );
  50. } else {
  51. _e( 'URL:' );
  52. } ?></td>
  53. <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>
  54. </tr>
  55. </tbody>
  56. </table>
  57. <br />
  58. </div>
  59. </div>
  60. <div id="postdiv" class="postarea">
  61. <?php
  62. $quicktags_settings = array( 'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' );
  63. wp_editor( $comment->comment_content, 'content', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) );
  64. wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
  65. </div>
  66. </div><!-- /post-body-content -->
  67. <div id="postbox-container-1" class="postbox-container">
  68. <div id="submitdiv" class="stuffbox" >
  69. <h3><span class='hndle'><?php _e('Status') ?></span></h3>
  70. <div class="inside">
  71. <div class="submitbox" id="submitcomment">
  72. <div id="minor-publishing">
  73. <div id="minor-publishing-actions">
  74. <div id="preview-action">
  75. <a class="preview button" href="<?php echo get_comment_link(); ?>" target="_blank"><?php _e('View Comment'); ?></a>
  76. </div>
  77. <div class="clear"></div>
  78. </div>
  79. <div id="misc-publishing-actions">
  80. <div class="misc-pub-section" id="comment-status-radio">
  81. <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 />
  82. <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 />
  83. <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>
  84. </div>
  85. <div class="misc-pub-section curtime">
  86. <?php
  87. // translators: Publish box date format, see http://php.net/date
  88. $datef = __( 'M j, Y @ G:i' );
  89. $stamp = __('Submitted on: <b>%1$s</b>');
  90. $date = date_i18n( $datef, strtotime( $comment->comment_date ) );
  91. ?>
  92. <span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a>
  93. <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0); ?></div>
  94. </div>
  95. </div> <!-- misc actions -->
  96. <div class="clear"></div>
  97. </div>
  98. <div id="major-publishing-actions">
  99. <div id="delete-action">
  100. <?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url("comment.php?action=" . ( !EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) . "&amp;c=$comment->comment_ID&amp;_wp_original_http_referer=" . urlencode(wp_get_referer()), 'delete-comment_' . $comment->comment_ID) . "'>" . ( !EMPTY_TRASH_DAYS ? __('Delete Permanently') : __('Move to Trash') ) . "</a>\n"; ?>
  101. </div>
  102. <div id="publishing-action">
  103. <?php submit_button( __( 'Update' ), 'primary', 'save', false ); ?>
  104. </div>
  105. <div class="clear"></div>
  106. </div>
  107. </div>
  108. </div>
  109. </div><!-- /submitdiv -->
  110. </div>
  111. <div id="postbox-container-2" class="postbox-container">
  112. <?php
  113. do_action('add_meta_boxes', 'comment', $comment);
  114. do_action('add_meta_boxes_comment', $comment);
  115. do_meta_boxes(null, 'normal', $comment);
  116. ?>
  117. </div>
  118. <input type="hidden" name="c" value="<?php echo esc_attr($comment->comment_ID) ?>" />
  119. <input type="hidden" name="p" value="<?php echo esc_attr($comment->comment_post_ID) ?>" />
  120. <input name="referredby" type="hidden" id="referredby" value="<?php echo esc_url(stripslashes(wp_get_referer())); ?>" />
  121. <?php wp_original_referer_field(true, 'previous'); ?>
  122. <input type="hidden" name="noredir" value="1" />
  123. </div><!-- /post-body -->
  124. </div>
  125. </div>
  126. </form>
  127. <script type="text/javascript">
  128. try{document.post.name.focus();}catch(e){}
  129. </script>