Tribe__Image__Plus__Main::instance()

Get (and instantiate, if necessary) the instance of the class.

Contents


Return

(self)


Top ↑

Source

File: src/Tribe/Main.php

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