Changeset 5951 for trunk/src/includes/admin/list-tables/topic-replies.php
- Timestamp:
- 10/28/2015 04:07:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/list-tables/topic-replies.php
r5930 r5951 24 24 * metabox, similar to comments in posts and pages. 25 25 * 26 * @since bbPress (r5886)26 * @since 2.6.0 bbPress (r5886) 27 27 */ 28 28 class BBP_Topic_Replies_List_Table extends WP_List_Table { … … 31 31 * The main constructor method 32 32 * 33 * @since bbPress (r5886)33 * @since 2.6.0 bbPress (r5886) 34 34 */ 35 35 public function __construct( $args = array() ) { … … 45 45 * Setup the list-table's columns 46 46 * 47 * @since bbPress (r5886)47 * @since 2.6.0 bbPress (r5886) 48 48 * 49 49 * @see WP_List_Table::::single_row_columns() … … 63 63 * Allow `bbp_reply_created` to be sortable 64 64 * 65 * @since bbPress (r5886)65 * @since 2.6.0 bbPress (r5886) 66 66 * 67 67 * @return array An associative array containing the `bbp_reply_created` column … … 76 76 * Setup the bulk actions 77 77 * 78 * @since bbPress (r5886)78 * @since 2.6.0 bbPress (r5886) 79 79 * 80 80 * @return array An associative array containing all the bulk actions … … 94 94 * Output the `cb` column for bulk actions (if we implement them) 95 95 * 96 * @since bbPress (r5886)96 * @since 2.6.0 bbPress (r5886) 97 97 */ 98 98 public function column_cb( $item = '' ) { … … 107 107 * Output the contents of the `bbp_topic_reply_author` column 108 108 * 109 * @since bbPress (r5886)109 * @since 2.6.0 bbPress (r5886) 110 110 */ 111 111 public function column_bbp_topic_reply_author( $item = '' ) { … … 121 121 * Output the contents of the `bbp_reply_created` column 122 122 * 123 * @since bbPress (r5886)123 * @since 2.6.0 bbPress (r5886) 124 124 */ 125 125 public function column_bbp_reply_created( $item = '' ) { … … 133 133 * Output the contents of the `bbp_reply_content` column 134 134 * 135 * @since bbPress (r5886)135 * @since 2.6.0 bbPress (r5886) 136 136 */ 137 137 public function column_bbp_reply_content( $item = '' ) { … … 159 159 * Handle bulk action requests 160 160 * 161 * @since bbPress (r5886)161 * @since 2.6.0 bbPress (r5886) 162 162 */ 163 163 public function process_bulk_action() { … … 175 175 * Prepare the list-table items for display 176 176 * 177 * @since bbPress (r5886)177 * @since 2.6.0 bbPress (r5886) 178 178 * 179 179 * @uses $this->_column_headers … … 234 234 * Message to be displayed when there are no items 235 235 * 236 * @since bbPress (r5930)236 * @since 2.6.0 bbPress (r5930) 237 237 */ 238 238 public function no_items() { … … 246 246 * with a nonce and check that we do not need. 247 247 * 248 * @since bbPress (r5930)248 * @since 2.6.0 bbPress (r5930) 249 249 */ 250 250 public function display() { … … 283 283 * with a nonce and check that we do not need. 284 284 * 285 * @since bbPress (r5930)285 * @since 2.6.0 bbPress (r5930) 286 286 * 287 287 * @param string $which
Note: See TracChangeset
for help on using the changeset viewer.