Make WordPress Core

Changeset 32666


Ignore:
Timestamp:
05/31/2015 01:37:36 AM (10 years ago)
Author:
DrewAPicture
Message:

Fix formatting and add missing return descriptions for inline documentation introduced in [32644] for WP_MS_Users_List_Table.

See #25408. See #32246.

File:
1 edited

Legend:

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

    r32656 r32666  
    326326
    327327    /**
    328      * Get name of default primary column
     328     * Get the name of the default primary column.
    329329     *
    330330     * @since 4.3.0
    331331     * @access protected
    332332     *
    333      * @return string
     333     * @return string Name of the default primary column, in this case, 'username'.
    334334     */
    335335    protected function get_default_primary_column_name() {
     
    338338
    339339    /**
    340      * Generate and display row actions links
     340     * Generate and display row actions links.
    341341     *
    342342     * @since 4.3.0
    343343     * @access protected
    344344     *
    345      * @param object $user User being acted upon
    346      * @param string $column_name Current column name
    347      * @param string $primary Primary column name
    348      *
    349      * @return string
     345     * @param object $user        User being acted upon.
     346     * @param string $column_name Current column name.
     347     * @param string $primary     Primary column name.
     348     * @return string Row actions output for users in Multisite.
    350349     */
    351350    protected function handle_row_actions( $user, $column_name, $primary ) {
     
    362361
    363362            /**
    364              * Filter the action links displayed under each user
    365              * in the Network Admin Users list table.
     363             * Filter the action links displayed under each user in the Network Admin Users list table.
    366364             *
    367365             * @since 3.2.0
Note: See TracChangeset for help on using the changeset viewer.