Make WordPress Core


Ignore:
Timestamp:
07/13/2015 05:48:07 PM (10 years ago)
Author:
DrewAPicture
Message:

Add missing summaries, @access tags, and some parameter descriptions to methods added to WP_Posts_List_Table in 4.3.

See [32740]. See #32891.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r33117 r33197  
    4949
    5050    /**
     51     * Current level for output.
     52     *
    5153     * @since 4.3.0
     54     * @access protected
    5255     * @var int
    5356     */
     
    678681
    679682    /**
     683     * Handles the checkbox column output.
     684     *
    680685     * @since 4.3.0
    681      *
    682      * @param WP_Post $post
     686     * @access public
     687     *
     688     * @param WP_Post $post The current WP_Post object.
    683689     */
    684690    public function column_cb( $post ) {
     
    693699
    694700    /**
     701     * Handles the title column output.
     702     *
    695703     * @since 4.3.0
     704     * @access public
    696705     *
    697706     * @global string $mode
    698707     *
    699      * @param WP_Post $post
     708     * @param WP_Post $post The current WP_Post object.
    700709     */
    701710    public function column_title( $post ) {
     
    773782
    774783    /**
     784     * Handles the post date column output.
     785     *
    775786     * @since 4.3.0
     787     * @access public
    776788     *
    777789     * @global string $mode
    778790     *
    779      * @param WP_Post $post
     791     * @param WP_Post $post The current WP_Post object.
    780792     */
    781793    public function column_date( $post ) {
     
    835847
    836848    /**
     849     * Handles the comments column output.
     850     *
    837851     * @since 4.3.0
    838      *
    839      * @param WP_Post $post
     852     * @access public
     853     *
     854     * @param WP_Post $post The current WP_Post object.
    840855     */
    841856    public function column_comments( $post ) {
     
    852867
    853868    /**
     869     * Handles the post author column output.
     870     *
    854871     * @since 4.3.0
    855      *
    856      * @param WP_Post $post
     872     * @access public
     873     *
     874     * @param WP_Post $post The current WP_Post object.
    857875     */
    858876    public function column_author( $post ) {
     
    864882
    865883    /**
     884     * Handles the default column output.
     885     *
    866886     * @since 4.3.0
    867      *
    868      * @param WP_Post $post
    869      * @param string  $column_name
     887     * @access public
     888     *
     889     * @param WP_Post $post        The current WP_Post object.
     890     * @param string  $column_name The current column name.
    870891     */
    871892    public function column_default( $post, $column_name ) {
     
    953974
    954975    /**
     976     * Handles columns output for a single row in the table.
     977     *
    955978     * @since 4.3.0
    956      *
    957      * @param WP_Post $item
     979     * @access public
     980     *
     981     * @param WP_Post $item The current WP_Post object.
    958982     */
    959983    public function single_row_columns( $item ) {
     
    10381062
    10391063    /**
    1040      * Get the name of the default primary column.
     1064     * Gets the name of the default primary column.
    10411065     *
    10421066     * @since 4.3.0
     
    10501074
    10511075    /**
    1052      * Generate and display row actions links.
     1076     * Generates and displays row action links.
    10531077     *
    10541078     * @since 4.3.0
Note: See TracChangeset for help on using the changeset viewer.