TwistPHP Documentation

processTag

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

processTagProcess each individual tag from the View one by one

Parameters

Name Type Description
$strRawViewstringn/a
$strTagstringn/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
$strRawView 'foo';
$strTag 'foo';
$arrData = array();

//Call the function processTag with the example vars
Twist::View() -> processTag($strRawView$strTag$arrData);