Controller::is_registered()

Returns whether any instance of this controller has been registered or not.


Return

(bool) Whether any instance of this controller has been registered or not.


Top ↑

Source

File: src/Conference/Contracts/Provider/Controller.php

	public static function is_registered(): bool {
		return (bool) tribe()->getVar( static::class . '_registered' );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.0 Introduced.