LLMS_Abstract_Notification_Controller::instance()
Get the singleton instance for the extending class
Contents
Return Return
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 ]; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |