TwistPHP Documentation

_render

File path: dist/twist/Core/Controllers/Base.controller.php
Namespace: Twist\Core\Controllers
Extends:

_render

Parameters

Name Type Description
$dirViewstringn/a
[$arrViewTags = null]arrayn/a
[$blRemoveUnusedTags = false]booleann/a

Return Values

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

Example

<?php
//Set the variables for the example
$dirView '/home/user/public_html/twist';
$arrViewTags null;
$blRemoveUnusedTags false;

//Call the function _render with the example vars
$resBase = new \Twist\Core\Controllers\Base();
$resBase -> _render($dirView$arrViewTags$blRemoveUnusedTags);