Skip to:
Content

BuddyPress.org

Changeset 9526


Ignore:
Timestamp:
02/22/2015 10:49:18 PM (10 years ago)
Author:
tw2113
Message:

Adds hooks documentation to three Member widgets.

See #5944.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-widgets.php

    r9467 r9526  
    6060            $instance['member_default'] = 'active';
    6161
     62        /**
     63         * Filters the title of the Members widget.
     64         *
     65         * @since BuddyPress (1.8.0)
     66         *
     67         * @param string $value The widget title.
     68         */
    6269        $title = apply_filters( 'widget_title', $instance['title'] );
    6370
     
    222229        extract( $args );
    223230
     231        /**
     232         * Filters the title of the Who's Online widget.
     233         *
     234         * @since BuddyPress (1.8.0)
     235         *
     236         * @param string $value The widget title.
     237         */
    224238        $title = apply_filters( 'widget_title', $instance['title'] );
    225239
     
    328342        extract( $args );
    329343
     344        /**
     345         * Filters the title of the Recently Active widget.
     346         *
     347         * @since BuddyPress (1.8.0)
     348         *
     349         * @param string $value The widget title.
     350         */
    330351        $title = apply_filters( 'widget_title', $instance['title'] );
    331352
Note: See TracChangeset for help on using the changeset viewer.