Make WordPress Core

Changeset 32661


Ignore:
Timestamp:
05/31/2015 01:22:28 AM (9 years ago)
Author:
DrewAPicture
Message:

Fix formatting and add a missing return description for inline documentation introduced in [32644] for WP_Links_List_Table.

See #25408. See #32246.

File:
1 edited

Legend:

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

    r32656 r32661  
    141141
    142142    /**
    143      * Get name of default primary column
     143     * Get the name of the default primary column.
    144144     *
    145145     * @since 4.3.0
    146146     * @access protected
    147      *
    148      * @return string
     147     * @return string Name of the default primary column, in this case, 'name'.
    149148     */
    150149    protected function get_default_primary_column_name() {
     
    252251
    253252    /**
    254      * Generate and display row actions links
    255      *
    256      * @since 4.3
     253     * Generate and display row actions for links.
     254     *
     255     * @since 4.3.0
    257256     * @access protected
    258257     *
    259      * @param object $link Link being acted upon
    260      * @param string $column_name Current column name
    261      * @param string $primary Primary column name
    262      *
    263      * @return string
     258     * @param object $link        Link being acted upon.
     259     * @param string $column_name Current column name.
     260     * @param string $primary     Primary column name.
     261     * @return string Row action output for links.
    264262     */
    265263    protected function handle_row_actions( $link, $column_name, $primary ) {
Note: See TracChangeset for help on using the changeset viewer.