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.
Source
File: src/Common/Contracts/Provider/Controller.php
public static function is_registered(): bool {
return (bool) tribe()->getVar( static::class . '_registered' );
}
Changelog
| Version | Description |
|---|---|
| 5.0.17 | Introduced. |