- Timestamp:
- 01/10/2016 12:51:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r35811 r36248 511 511 * @global string $comment_status Status for the current listed comments. 512 512 * 513 * @param object $comment Comment being acted upon.514 * @param string $column_name Current column name.515 * @param string $primary Primary column name.513 * @param WP_Comment $comment The comment object. 514 * @param string $column_name Current column name. 515 * @param string $primary Primary column name. 516 516 * @return string|void Comment row actions output. 517 517 */ … … 622 622 /** 623 623 * 624 * @param object $comment624 * @param WP_Comment $comment The comment object. 625 625 */ 626 626 public function column_cb( $comment ) { … … 633 633 634 634 /** 635 * @param object $comment635 * @param WP_Comment $comment The comment object. 636 636 */ 637 637 public function column_comment( $comment ) { … … 673 673 * @global string $comment_status 674 674 * 675 * @param object $comment675 * @param WP_Comment $comment The comment object. 676 676 */ 677 677 public function column_author( $comment ) { … … 713 713 /** 714 714 * @access public 715 * 716 * @param WP_Comment $comment The comment object. 715 717 */ 716 718 public function column_date( $comment ) { … … 729 731 /** 730 732 * @access public 731 */ 732 public function column_response() { 733 * 734 * @param WP_Comment $comment The comment object. 735 */ 736 public function column_response( $comment ) { 733 737 $post = get_post(); 734 738 … … 766 770 /** 767 771 * 768 * @param object $comment769 * @param string $column_name772 * @param WP_Comment $comment The comment object. 773 * @param string $column_name The custom column's name. 770 774 */ 771 775 public function column_default( $comment, $column_name ) {
Note: See TracChangeset
for help on using the changeset viewer.