- Timestamp:
- 07/12/2015 06:33:59 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r32991 r33179 312 312 313 313 /** 314 * @since 4.3.0 315 * 316 * @param WP_Post $post 314 * Handles the checkbox column output. 315 * 316 * @since 4.3.0 317 * @access public 318 * 319 * @param WP_Post $post The current WP_Post object. 317 320 */ 318 321 public function column_cb( $post ) { … … 326 329 327 330 /** 328 * @since 4.3.0 329 * 330 * @param WP_Post $post 331 * Handles the title column output. 332 * 333 * @since 4.3.0 334 * @access public 335 * 336 * @param WP_Post $post The current WP_Post object. 331 337 */ 332 338 public function column_title( $post ) { … … 371 377 372 378 /** 373 * @since 4.3.0 374 * 375 * @param WP_Post $post 379 * Handles the author column output. 380 * 381 * @since 4.3.0 382 * @access public 383 * 384 * @param WP_Post $post The current WP_Post object. 376 385 */ 377 386 public function column_author( $post ) { … … 383 392 384 393 /** 385 * @since 4.3.0 386 * 387 * @param WP_Post $post 394 * Handles the description column output. 395 * 396 * @since 4.3.0 397 * @access public 398 * 399 * @param WP_Post $post The current WP_Post object. 388 400 */ 389 401 public function column_desc( $post ) { … … 392 404 393 405 /** 394 * @since 4.3.0 395 * 396 * @param WP_Post $post 406 * Handles the date column output. 407 * 408 * @since 4.3.0 409 * @access public 410 * 411 * @param WP_Post $post The current WP_Post object. 397 412 */ 398 413 public function column_date( $post ) { … … 417 432 418 433 /** 419 * @since 4.3.0 420 * 421 * @param WP_Post $post 434 * Handles the parent column output. 435 * 436 * @since 4.3.0 437 * @access public 438 * 439 * @param WP_Post $post The current WP_Post object. 422 440 */ 423 441 public function column_parent( $post ) { … … 463 481 464 482 /** 465 * @since 4.3.0 466 * 467 * @param WP_Post $post 483 * Handles the comments column output. 484 * 485 * @since 4.3.0 486 * @access public 487 * 488 * @param WP_Post $post The current WP_Post object. 468 489 */ 469 490 public function column_comments( $post ) { … … 477 498 478 499 /** 479 * @since 4.3.0 480 * 481 * @param WP_Post $post 482 * @param string $column_name 500 * Handles output for the default column. 501 * 502 * @since 4.3.0 503 * @access public 504 * 505 * @param WP_Post $post The current WP_Post object. 506 * @param string $column_name Current column name. 483 507 */ 484 508 public function column_default( $post, $column_name ) { … … 555 579 556 580 /** 557 * Get the name of the default primary column.581 * Gets the name of the default primary column. 558 582 * 559 583 * @since 4.3.0 … … 623 647 624 648 /** 625 * Generate and display row actionslinks.649 * Generates and displays row action links. 626 650 * 627 651 * @since 4.3.0
Note: See TracChangeset
for help on using the changeset viewer.