Filter by type:
Search
Skip to content
Browse: Home / Classes / Plugin_Loader / Plugin_Loader::get_instance()

Plugin_Loader::get_instance()

Initiator


Description


Return

(object) initialized object of class.


Source

File: inc/lib/utm-analytics/plugin-loader.php

	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

Expand full source code Collapse full source code View on Trac


Changelog

Changelog
Version Description
0.0.1 Introduced.

User Contributed Notes

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