File path: dist/twist/Core/Controllers/Base.controller.php
Namespace: Twist\Core\Controllers
_replaceURI
— Register an replace URI for a response function for instance if you had thankYou() as the function name you could register 'thank-you' as an replace URI.
All replaces must be registered from within a __construct function in your controller. Adding a replace means that the original thankYou() will no-longer be callable by routes.
Name | Description |
---|---|
$strURI | n/a |
$strFunctionName | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strURI = 'foo';
$strFunctionName = 'foo';
//Call the function _replaceURI with the example vars
$resBase = new \Twist\Core\Controllers\Base();
$resBase -> _replaceURI($strURI, $strFunctionName);