Changeset 33193
- Timestamp:
- 07/13/2015 04:12:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r33117 r33193 246 246 247 247 /** 248 * Get the name of the primary column.248 * Gets the name of the primary column. 249 249 * 250 250 * @since 4.3.0 … … 337 337 338 338 /** 339 * Handles the checkbox column output. 340 * 339 341 * @since 4.3.0 340 * 341 * @param WP_Theme $theme 342 * @access public 343 * 344 * @param WP_Theme $theme The current WP_Theme object. 342 345 */ 343 346 public function column_cb( $theme ) { … … 350 353 351 354 /** 355 * Handles the name column output. 356 * 352 357 * @since 4.3.0 358 * @access public 353 359 * 354 360 * @global string $status … … 356 362 * @global string $s 357 363 * 358 * @param WP_Theme $theme 364 * @param WP_Theme $theme The current WP_Theme object. 359 365 */ 360 366 public function column_name( $theme ) { … … 441 447 442 448 /** 449 * Handles the description column output. 450 * 443 451 * @since 4.3.0 452 * @access public 444 453 * 445 454 * @global string $status 446 455 * @global array $totals 447 456 * 448 * @param WP_Theme $theme 457 * @param WP_Theme $theme The current WP_Theme object. 449 458 */ 450 459 public function column_description( $theme ) { … … 499 508 500 509 /** 510 * Handles default column output. 511 * 501 512 * @since 4.3.0 502 * 503 * @param WP_Theme $theme 504 * @param string $column_name 513 * @access public 514 * 515 * @param WP_Theme $theme The current WP_Theme object. 516 * @param string $column_name The current column name. 505 517 */ 506 518 public function column_default( $theme, $column_name ) { 507 519 $stylesheet = $theme->get_stylesheet(); 520 508 521 /** 509 522 * Fires inside each custom column of the Multisite themes list table. … … 519 532 520 533 /** 534 * Handles the output for a single table row. 535 * 521 536 * @since 4.3.0 522 * 523 * @param WP_Theme $item 537 * @access public 538 * 539 * @param WP_Theme $item The current WP_Theme object. 524 540 */ 525 541 public function single_row_columns( $item ) {
Note: See TracChangeset
for help on using the changeset viewer.