File path: dist/twist/Core/Utilities/View.utility.php
Namespace: Twist\Core\Utilities
Extends: Base
replaceTag
— Replace the tag in the View data with the provided content
Name | Description |
---|---|
$strRawView | n/a |
$strTag | n/a |
$strData | n/a |
[$strFunction = null] | n/a |
[$mxdRawData = array()] | n/a |
[$arrParameters = array()] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strRawView = 'foo';
$strTag = 'foo';
$strData = 'foo';
$strFunction = null;
$mxdRawData = array();
$arrParameters = array();
//Call the function replaceTag with the example vars
Twist::View() -> replaceTag($strRawView, $strTag, $strData, $strFunction, $mxdRawData, $arrParameters);