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

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

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