LLMS_Helper_Options::instance()

Main Instance


Return Return

(LLMS_Helper_Options)


Top ↑

Source Source

File: libraries/lifterlms-helper/includes/class-llms-helper-options.php

	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.