LifterLMS::instance()
Main Instance of LifterLMS Ensures only one instance of LifterLMS is loaded or can be loaded.
Description Description
See also See also
Return Return
(LifterLMS) - Main instance
Source Source
File: lifterlms.php
public static function instance() { if ( is_null( self::$_instance ) ) { self::$_instance = new self(); } return self::$_instance; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: