TwistPHP Documentation

processCSS

File path: dist/twist/Core/Models/Resources.model.php
Namespace: Twist\Core\Models
Extends:

processCSSProcess the CSS files and output them in the desired HTML format

Parameters

Name Type Description
$arrFilesarrayn/a
$strPathstringn/a
$strURIstringn/a
[$blInline = false]booleann/a
[$mxdAsyncType = null]mixedn/a

Return Values

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

Example

<?php
//Set the variables for the example
$arrFiles = array(=> 'foo'=> 'bar');
$strPath 'foo';
$strURI 'foo';
$blInline false;
$mxdAsyncType null;

//Call the function processCSS with the example vars
$resResources = new \Twist\Core\Models\Resources();
$resResources -> processCSS($arrFiles$strPath$strURI$blInline$mxdAsyncType);