LifterLMS_Helper::instance()

Retrieve the main Instance of LifterLMS_Helper


Return Return

(LifterLMS_Helper)


Top ↑

Source Source

File: libraries/lifterlms-helper/class-lifterlms-helper.php

53
54
55
56
57
58
public static function instance() {
    if ( is_null( self::$instance ) ) {
        self::$instance = new self();
    }
    return self::$instance;
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.2.0 Use self::$instance in favor of self::$_instance.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.