TwistPHP Documentation

build

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

buildBuild the View with the array of tags supplied

Parameters

Name Type Description
$dirViewstringn/a
[$arrViewTags = null]arrayn/a
[$blRemoveUnusedTags = false]booleann/a
[$blProcessTags = true]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;
$blProcessTags true;

//Call the function build with the example vars
Twist::View() -> build($dirView$arrViewTags$blRemoveUnusedTags$blProcessTags);