Make WordPress Core


Ignore:
Timestamp:
07/12/2015 06:33:59 PM (10 years ago)
Author:
DrewAPicture
Message:

Add missing summaries and @access tags to methods added to WP_Media_List_Table in 4.3.

See [32754]. See #32891.

File:
1 edited

Legend:

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

    r32991 r33179  
    312312
    313313    /**
    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.
    317320     */
    318321    public function column_cb( $post ) {
     
    326329
    327330    /**
    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.
    331337     */
    332338    public function column_title( $post ) {
     
    371377
    372378    /**
    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.
    376385     */
    377386    public function column_author( $post ) {
     
    383392
    384393    /**
    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.
    388400     */
    389401    public function column_desc( $post ) {
     
    392404
    393405    /**
    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.
    397412     */
    398413    public function column_date( $post ) {
     
    417432
    418433    /**
    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.
    422440     */
    423441    public function column_parent( $post ) {
     
    463481
    464482    /**
    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.
    468489     */
    469490    public function column_comments( $post ) {
     
    477498
    478499    /**
    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.
    483507     */
    484508    public function column_default( $post, $column_name ) {
     
    555579
    556580    /**
    557      * Get the name of the default primary column.
     581     * Gets the name of the default primary column.
    558582     *
    559583     * @since 4.3.0
     
    623647
    624648    /**
    625      * Generate and display row actions links.
     649     * Generates and displays row action links.
    626650     *
    627651     * @since 4.3.0
Note: See TracChangeset for help on using the changeset viewer.