Make WordPress Core

Changeset 34553


Ignore:
Timestamp:
09/25/2015 07:23:18 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add a missing summary, version, and tag descriptions to the DocBlock for WP_Widget_Text::widget().

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/widgets/class-wp-widget-text.php

    r34552 r34553  
    2424
    2525    /**
    26      * @param array $args
    27      * @param array $instance
     26     * Outputs the Text widget content.
     27     *
     28     * @since 2.8.0
     29     * @access public
     30     *
     31     * @param array $args     Display arguments including 'before_title', 'after_title',
     32     *                        'before_widget', and 'after_widget'.
     33     * @param array $instance The settings for the particular instance of the widget.
    2834     */
    2935    public function widget( $args, $instance ) {
     36
    3037        /** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */
    3138        $title = apply_filters( 'widget_title', empty( $instance['title'] ) ? '' : $instance['title'], $instance, $this->id_base );
Note: See TracChangeset for help on using the changeset viewer.