LLMS_Abstract_Notification_Controller::instance()

Get the singleton instance for the extending class


Return Return

(LLMS_Abstract_Notification_Controller)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.notification.controller.php

	public static function instance() {

		$class = get_called_class();

		if ( ! isset( self::$_instances[ $class ] ) ) {
			self::$_instances[ $class ] = new $class();
		}

		return self::$_instances[ $class ];

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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