TwistPHP Documentation

controller

File path: dist/twist/Core/Utilities/Route.utility.php
Namespace: Twist\Core\Utilities
Extends: Base

controllerAdd a controller that will be called upon a any request (HTTP METHOD) to the given URI.
The URI can be made dynamic by adding a '%' symbol at the end.

Parameters

Name Type Description
$strURIstringn/a
$mxdControllermixedn/a
[$mxdBaseView = true]mixedn/a
[$mxdCache = false]mixedn/a
[$arrData = array()]arrayn/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strURI 'foo';
$mxdController 'foo-123';
$mxdBaseView true;
$mxdCache false;
$arrData = array();

//Call the function controller with the example vars
Twist::Route() -> controller($strURI$mxdController$mxdBaseView$mxdCache$arrData);