BP_Search_Component

Defines the BuddyBoss Search Component.

Description

Source

File: bp-search/classes/class-bp-search-component.php

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
class BP_Search_Component extends BP_Component {
    /**
     * Start the search component creation process
     *
     * @since BuddyBoss 1.0.0
     */
    public function __construct() {
        parent::start(
            'search',
            __( 'Search', 'buddyboss' ),
            buddypress()->plugin_dir
        );
    }
 
    /**
     * Setup globals
     *
     * @since BuddyBoss 1.0.0
     */
    public function setup_globals( $args = array() ) {
        parent::setup_globals( $args );
    }
 
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.0 Introduced.

Methods

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.