Controller::is_active()
Whether the controller is active or not.
Controllers will be active by default, if that is not the case, the controller should override this method.
Return
(bool) Whether the controller is active or not.
Source
File: src/Conference/Contracts/Provider/Controller.php
public function is_active(): bool {
return true;
}
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |