Make WordPress Core


Ignore:
Timestamp:
07/13/2015 04:12:58 PM (9 years ago)
Author:
DrewAPicture
Message:

Add missing summaries to new methods added to WP_MS_Themes_List_Table in 4.3.

See [32756]. See #32891.

File:
1 edited

Legend:

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

    r33117 r33193  
    246246
    247247    /**
    248      * Get the name of the primary column.
     248     * Gets the name of the primary column.
    249249     *
    250250     * @since 4.3.0
     
    337337
    338338    /**
     339     * Handles the checkbox column output.
     340     *
    339341     * @since 4.3.0
    340      *
    341      * @param WP_Theme $theme
     342     * @access public
     343     *
     344     * @param WP_Theme $theme The current WP_Theme object.
    342345     */
    343346    public function column_cb( $theme ) {
     
    350353
    351354    /**
     355     * Handles the name column output.
     356     *
    352357     * @since 4.3.0
     358     * @access public
    353359     *
    354360     * @global string $status
     
    356362     * @global string $s
    357363     *
    358      * @param WP_Theme $theme
     364     * @param WP_Theme $theme The current WP_Theme object.
    359365     */
    360366    public function column_name( $theme ) {
     
    441447
    442448    /**
     449     * Handles the description column output.
     450     *
    443451     * @since 4.3.0
     452     * @access public
    444453     *
    445454     * @global string $status
    446455     * @global array  $totals
    447456     *
    448      * @param WP_Theme $theme
     457     * @param WP_Theme $theme The current WP_Theme object.
    449458     */
    450459    public function column_description( $theme ) {
     
    499508
    500509    /**
     510     * Handles default column output.
     511     *
    501512     * @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.
    505517     */
    506518    public function column_default( $theme, $column_name ) {
    507519        $stylesheet = $theme->get_stylesheet();
     520
    508521        /**
    509522         * Fires inside each custom column of the Multisite themes list table.
     
    519532
    520533    /**
     534     * Handles the output for a single table row.
     535     *
    521536     * @since 4.3.0
    522      *
    523      * @param WP_Theme $item
     537     * @access public
     538     *
     539     * @param WP_Theme $item The current WP_Theme object.
    524540     */
    525541    public function single_row_columns( $item ) {
Note: See TracChangeset for help on using the changeset viewer.