MP_Addon_Payoff_Elementor::instance()

Instance.


Description Description

Ensures only one instance of the class is loaded or can be loaded.


Top ↑

Return Return

(void) An instance of the class.


Top ↑

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;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.