Method | Description | |
---|---|---|
controller ( string $viewName, array $config = [] ) : |
Create a new Controller object | |
dispatcher ( array $config = [] ) | ||
model ( string $viewName, array $config = [] ) : |
Create a new Model object | |
toolbar ( array $config = [] ) : |
Creates a new Toolbar | |
transparentAuthentication ( array $config = [] ) : |
Creates a new TransparentAuthentication handler | |
view ( string $viewName, string $viewType = 'html', array $config = [] ) : |
Create a new View object |
public controller ( string $viewName, array $config = [] ) : |
||
$viewName | string | The name of the view we're getting a Controller for. |
$config | array | Optional MVC configuration values for the Controller object. |
return |
public transparentAuthentication ( array $config = [] ) : |
||
$config | array | The configuration values for the TransparentAuthentication object |
return |
public view ( string $viewName, string $viewType = 'html', array $config = [] ) : |
||
$viewName | string | The name of the view we're getting a View object for. |
$viewType | string | The type of the View object. By default it's "html". |
$config | array | Optional MVC configuration values for the View object. |
return |