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

AbSteps::get_instance()

Initiator


Return

(object) initialized object of class.


Source

File: admin-core/ajax/ab-steps.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


Changelog

Changelog
Version Description
1.0.0 Introduced.