BP_Latest_Activities::__construct()

Construct the widget.

Description

Source

File: bp-templates/bp-nouveau/includes/activity/widgets.php

23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public function __construct() {
 
    /**
     * Filters the widget options for the BP_Latest_Activities widget.
     *
     * @since BuddyPress 3.0.0
     *
     * @param array $value Array of widget options.
     */
    $widget_ops = apply_filters(
        'bp_latest_activities', array(
            'classname'                   => 'bp-latest-activities buddypress',
            'description'                 => __( 'Select to display the latest activity updates, by type, posted within your community.', 'buddyboss' ),
            'customize_selective_refresh' => true,
        )
    );
 
    parent::__construct( false, __( '(BB) Latest Activities', 'buddyboss' ), $widget_ops );
}

Changelog

Changelog
Version Description
BuddyPress 3.0.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.