TwistPHP Documentation

runTags

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

runTagsRun the tag processing on each tag that was found in the View and process them accordingly (Snipit module is required to process multi-dimensional tag arrays)

Parameters

Name Type Description
$strRawViewstringn/a
$strTagstringn/a
$strTypestringn/a
$strReferencestringn/a
[$arrData = array()]arrayn/a
[$blReturnArray = false]booleann/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';
$strType 'foo';
$strReference 'foo';
$arrData = array();
$blReturnArray false;

//Call the function runTags with the example vars
Twist::View() -> runTags($strRawView$strTag$strType$strReference$arrData$blReturnArray);