TwistPHP Documentation

getTags

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

getTagsGet all the tags of a given View and return them as an array

Parameters

Name Type Description
$mxdViewmixedn/a
[$blIsFile = true]booleann/a
[$blDiscover = false]booleann/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$mxdView 'foo-123';
$blIsFile true;
$blDiscover false;

//Call the function getTags with the example vars
Twist::View() -> getTags($mxdView$blIsFile$blDiscover);