ApplicationController
extends AbstractController
in package
Console application controller class
Tags
Table of Contents
Properties
- $application : Application|null
- Application object
- $bypassMaintenance : bool
- Bypass maintenance false
- $console : Console|null
- Console object
- $defaultAction : string
- Default action
- $maintenanceAction : string
- Maintenance action
Methods
- __construct() : mixed
- Constructor for the controller
- application() : Application
- Get application object
- bypassMaintenance() : bool
- Check the bypass maintenance check
- console() : Console
- Get request object
- createController() : void
- Create controller command
- createModel() : void
- Create model command
- createView() : void
- Create view command
- dispatch() : void
- Dispatch the controller based on the action
- down() : void
- Down command
- env() : void
- Env command
- error() : void
- Default error action method
- getDefaultAction() : string
- Get the default action
- getMaintenanceAction() : string
- Get the maintenance action
- init() : void
- Init command
- setBypassMaintenance() : static
- Check the bypass maintenance check
- setDefaultAction() : AbstractController
- Set the default action
- setMaintenanceAction() : AbstractController
- Set the maintenance action
- status() : void
- Status command
- up() : void
- Up command
Properties
$application
Application object
protected
Application|null
$application
= null
$bypassMaintenance
Bypass maintenance false
protected
bool
$bypassMaintenance
= false
$console
Console object
protected
Console|null
$console
= null
$defaultAction
Default action
protected
string
$defaultAction
= 'error'
$maintenanceAction
Maintenance action
protected
string
$maintenanceAction
= 'maintenance'
Methods
__construct()
Constructor for the controller
public
__construct(Application $application, Console $console) : mixed
Parameters
- $application : Application
- $console : Console
application()
Get application object
public
application() : Application
Return values
ApplicationbypassMaintenance()
Check the bypass maintenance check
public
bypassMaintenance() : bool
Return values
boolconsole()
Get request object
public
console() : Console
Return values
ConsolecreateController()
Create controller command
public
createController(string $ctrl[, array<string|int, mixed> $options = [] ]) : void
Parameters
- $ctrl : string
- $options : array<string|int, mixed> = []
createModel()
Create model command
public
createModel(string $model[, array<string|int, mixed> $options = [] ]) : void
Parameters
- $model : string
- $options : array<string|int, mixed> = []
createView()
Create view command
public
createView(string $view) : void
Parameters
- $view : string
dispatch()
Dispatch the controller based on the action
public
dispatch([string|null $action = null ][, array<string|int, mixed>|null $params = null ]) : void
Parameters
- $action : string|null = null
- $params : array<string|int, mixed>|null = null
Tags
down()
Down command
public
down([array<string|int, mixed> $options = [] ]) : void
Parameters
- $options : array<string|int, mixed> = []
env()
Env command
public
env() : void
error()
Default error action method
public
error() : void
Tags
getDefaultAction()
Get the default action
public
getDefaultAction() : string
Return values
stringgetMaintenanceAction()
Get the maintenance action
public
getMaintenanceAction() : string
Return values
stringinit()
Init command
public
init(string $namespace[, array<string|int, mixed> $options = [] ]) : void
Parameters
- $namespace : string
- $options : array<string|int, mixed> = []
setBypassMaintenance()
Check the bypass maintenance check
public
setBypassMaintenance([bool $bypass = true ]) : static
Parameters
- $bypass : bool = true
Return values
staticsetDefaultAction()
Set the default action
public
setDefaultAction(string $default) : AbstractController
Parameters
- $default : string
Return values
AbstractControllersetMaintenanceAction()
Set the maintenance action
public
setMaintenanceAction(string $maintenance) : AbstractController
Parameters
- $maintenance : string
Return values
AbstractControllerstatus()
Status command
public
status() : void
up()
Up command
public
up() : void