Make WordPress Core


Ignore:
Timestamp:
12/16/2015 04:35:11 PM (11 years ago)
Author:
DrewAPicture
Message:

Docs: Add missing property and method summaries in DocBlocks for Walker_PageDropdown.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-walker-page-dropdown.php

    r35928 r35961  
    1717class Walker_PageDropdown extends Walker {
    1818        /**
     19         * Walker tree type.
     20         *
     21         * @since 2.1.0
    1922         * @see Walker::$tree_type
    20          * @since 2.1.0
    2123         * @var string
    2224         */
     
    2426
    2527        /**
     28         * Database fields.
     29         *
     30         * @since 2.1.0
    2631         * @see Walker::$db_fields
    27          * @since 2.1.0
    2832         * @todo Decouple this
    2933         * @var array
     
    3236
    3337        /**
     38         * Starts the element output.
     39         *
     40         * @since 2.1.0
     41         *
    3442         * @see Walker::start_el()
    35          * @since 2.1.0
    3643         *
    3744         * @param string $output Passed by reference. Used to append additional content.
     
    7178                 */
    7279                $title = apply_filters( 'list_pages', $title, $page );
     80
    7381                $output .= $pad . esc_html( $title );
    7482                $output .= "</option>\n";
Note: See TracChangeset for help on using the changeset viewer.