Bp_Search_Activities::instance()

Insures that only one instance of Class exists in memory at any one time. Also prevents needing to define globals all over the place.

Description

Return

(object) Bp_Search_Activities

Source

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

28
29
30
31
32
33
34
35
36
37
38
39
public static function instance() {
    // Store the instance locally to avoid private static replication
    static $instance = null;
 
    // Only run these methods if they haven't been run previously
    if (null === $instance) {
        $instance = new Bp_Search_Activities();
    }
 
    // Always return the instance
    return $instance;
}

Changelog

Changelog
Version Description
BuddyBoss 1.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.