MP_Addon_Payoff_Elementor::instance()
Instance.
Contents
Description Description
Ensures only one instance of the class is loaded or can be loaded.
Return Return
(void) An instance of the class.
Source Source
File: calculator-mortgage-payoff-add-on/inc/extensions/MP_Addon_Payoff_Elementor.php
public static function instance() {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self();
}
return self::$_instance;
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |