- Timestamp:
- 05/28/2015 09:40:27 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r32600 r32642 34 34 * @see WP_List_Table::__construct() for more information on default arguments. 35 35 * 36 * @global int $post_id 37 * 36 38 * @param array $args An associative array of arguments. 37 39 */ … … 56 58 } 57 59 60 /** 61 * 62 * @global int $post_id 63 * @global string $comment_status 64 * @global string $search 65 * @global string $comment_type 66 */ 58 67 public function prepare_items() { 59 68 global $post_id, $comment_status, $search, $comment_type; … … 154 163 } 155 164 165 /** 166 * 167 * @global string $comment_status 168 */ 156 169 public function no_items() { 157 170 global $comment_status; … … 163 176 } 164 177 178 /** 179 * 180 * @global int $post_id 181 * @global string $comment_status 182 * @global string $comment_type 183 */ 165 184 protected function get_views() { 166 185 global $post_id, $comment_status, $comment_type; … … 216 235 } 217 236 237 /** 238 * 239 * @global string $comment_status 240 */ 218 241 protected function get_bulk_actions() { 219 242 global $comment_status; … … 240 263 } 241 264 265 /** 266 * 267 * @global string $comment_status 268 * @global string $comment_type 269 * @param string $which 270 */ 242 271 protected function extra_tablenav( $which ) { 243 272 global $comment_status, $comment_type; … … 300 329 } 301 330 331 /** 332 * 333 * @global int $post_id 334 * @return array 335 */ 302 336 public function get_columns() { 303 337 global $post_id; … … 357 391 } 358 392 393 /** 394 * 395 * @global WP_Post $post 396 * @global object $comment 397 * @param object $a_comment 398 */ 359 399 public function single_row( $a_comment ) { 360 400 global $post, $comment; … … 384 424 } 385 425 426 /** 427 * 428 * @global string $comment_status 429 * @param object $comment 430 */ 386 431 public function column_comment( $comment ) { 387 432 global $comment_status; … … 513 558 } 514 559 560 /** 561 * 562 * @global string $comment_status 563 * @param object $comment 564 */ 515 565 public function column_author( $comment ) { 516 566 global $comment_status;
Note: See TracChangeset
for help on using the changeset viewer.