Make WordPress Core

Changeset 32669


Ignore:
Timestamp:
05/31/2015 01:43:33 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix syntax and add missing return descriptions for inline documentation introduced in [32644] for WP_Terms_List_Table.

See #25408. See #32246.

File:
1 edited

Legend:

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

    r32656 r32669  
    375375
    376376        /**
    377          * Get name of default primary column
     377         * Get the name of the default primary column.
    378378         *
    379379         * @since 4.3.0
    380380         * @access protected
    381381         *
    382          * @return string
     382         * @return string Name of the default primary column, in this case, 'name'.
    383383         */
    384384        protected function get_default_primary_column_name() {
     
    387387
    388388        /**
    389          * Generate and display row actions links
     389         * Generate and display row actions links.
    390390         *
    391391         * @since 4.3.0
    392392         * @access protected
    393393         *
    394          * @param object $tag Tag being acted upon
    395          * @param string $column_name Current column name
    396          * @param string $primary Primary column name
    397          *
    398          * @return string
     394         * @param object $tag         Tag being acted upon.
     395         * @param string $column_name Current column name.
     396         * @param string $primary     Primary column name.
     397         * @return string Row actions output for terms.
    399398         */
    400399        protected function handle_row_actions( $tag, $column_name, $primary ) {
Note: See TracChangeset for help on using the changeset viewer.