File path: dist/twist/Core/Utilities/View.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
runTags
— Run 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)
Name | Description |
---|---|
$strRawView | n/a |
$strTag | n/a |
$strType | n/a |
$strReference | n/a |
[$arrData = array()] | n/a |
[$blReturnArray = false] | n/a |
void — No return information has been documented for this function.
<?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);