File path: dist/twist/Core/Utilities/Route.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
package
— Add a pre-defined package route (interface) (provided by installed packages) 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.
Name | Description |
---|---|
$strURI | n/a |
$strPackage | n/a |
[$mxdBaseView = true] | n/a |
[$mxdCache = false] | n/a |
[$arrData = array()] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strURI = 'foo';
$strPackage = 'foo';
$mxdBaseView = true;
$mxdCache = false;
$arrData = array();
//Call the function package with the example vars
Twist::Route() -> package($strURI, $strPackage, $mxdBaseView, $mxdCache, $arrData);