- Timestamp:
- 05/28/2015 09:40:27 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r31873 r32642 18 18 * @see WP_List_Table::__construct() for more information on default arguments. 19 19 * 20 * @global string $status 21 * @global int $page 22 * 20 23 * @param array $args An associative array of arguments. 21 24 */ … … 46 49 } 47 50 51 /** 52 * 53 * @global string $status 54 * @global type $plugins 55 * @global array $totals 56 * @global int $page 57 * @global string $orderby 58 * @global string $order 59 * @global string $s 60 */ 48 61 public function prepare_items() { 49 62 global $status, $plugins, $totals, $page, $orderby, $order, $s; … … 242 255 } 243 256 257 /** 258 * 259 * @global array $plugins 260 */ 244 261 public function no_items() { 245 262 global $plugins; … … 251 268 } 252 269 270 /** 271 * 272 * @global string $status 273 * @return array 274 */ 253 275 public function get_columns() { 254 276 global $status; … … 265 287 } 266 288 289 /** 290 * 291 * @global array $totals 292 * @global string $status 293 * @return array 294 */ 267 295 protected function get_views() { 268 296 global $totals, $status; … … 309 337 } 310 338 339 /** 340 * 341 * @global string $status 342 * @return array 343 */ 311 344 protected function get_bulk_actions() { 312 345 global $status; … … 374 407 } 375 408 409 /** 410 * 411 * @global string $status 412 */ 376 413 public function display_rows() { 377 414 global $status;
Note: See TracChangeset
for help on using the changeset viewer.