Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (7 years ago)
Author:
DrewAPicture
Message:

Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline @see tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-customize-panel.php

    r36809 r37342  
    131131     *
    132132     * @var callable Callback is called with one argument, the instance of
    133      *               {@see WP_Customize_Section}, and returns bool to indicate
    134      *               whether the section is active (such as it relates to the URL
    135      *               currently being previewed).
     133     *               WP_Customize_Section, and returns bool to indicate whether
     134     *               the section is active (such as it relates to the URL currently
     135     *               being previewed).
    136136     */
    137137    public $active_callback = '';
     
    184184         * @since 4.1.0
    185185         *
    186          * @param bool               $active  Whether the Customizer panel is active.
    187          * @param WP_Customize_Panel $panel   {@see WP_Customize_Panel} instance.
     186         * @param bool               $active Whether the Customizer panel is active.
     187         * @param WP_Customize_Panel $panel  WP_Customize_Panel instance.
    188188         */
    189189        $active = apply_filters( 'customize_panel_active', $active, $panel );
     
    193193
    194194    /**
    195      * Default callback used when invoking {@see WP_Customize_Panel::active()}.
     195     * Default callback used when invoking WP_Customize_Panel::active().
    196196     *
    197197     * Subclasses can override this with their specific logic, or they may
     
    291291     * Render the panel container, and then its contents (via `this->render_content()`) in a subclass.
    292292     *
    293      * Panel containers are now rendered in JS by default, see {@see WP_Customize_Panel::print_template()}.
     293     * Panel containers are now rendered in JS by default, see WP_Customize_Panel::print_template().
    294294     *
    295295     * @since 4.0.0
     
    301301     * Render the panel UI in a subclass.
    302302     *
    303      * Panel contents are now rendered in JS by default, see {@see WP_Customize_Panel::print_template()}.
     303     * Panel contents are now rendered in JS by default, see WP_Customize_Panel::print_template().
    304304     *
    305305     * @since 4.1.0
Note: See TracChangeset for help on using the changeset viewer.