<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgElements
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2015
*/
/**
* Set custom namespace
*/
namespace SgM;
use Contao\StringUtil;
/**
* Class SgElements
*
* Base class for "SgElements".
*
* @package SgElements
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2015
*/
class SgElements
{
/**
* Contao hook to add specific classes to a content element or an article.
*
* @param object $objElement The contao content element object or the article object.
* @param string $strBuffer The parsed html code of the contao content element or nothing for an article.
*
* @return string The modified html code of the contao content element
*
*/
public function addClasses($objElement, $strBuffer=false)
{
if('FE' !== TL_MODE)
{
return $strBuffer;
}
// get classes
$classes = array();
$cssID = StringUtil::deserialize($objElement->cssID, true);
if(!empty($cssID)) {
$classes = explode(' ', $cssID[1]);
}
$startClassChecksum = md5(serialize($classes));
// if contao content element
if ($strBuffer)
{
// add space class if set and not "defspace"
if ($objElement->space_class)
{
$classes[] = $objElement->space_class;
}
// add withbg class if set
if ($objElement->withbg_class)
{
$classes[] = 'withbg';
}
// remove duplicate classes
#$classes = array_unique($classes, SORT_REGULAR);
$endClassChecksum = md5(serialize($classes));
// only if classes changed
if ($startClassChecksum!=$endClassChecksum)
{
// try to use the real object to inject the space class
$strCte = '';
foreach($GLOBALS['TL_CTE'] AS $node => $arrTypes)
{
foreach($arrTypes AS $type => $class)
{
if ($type == $objElement->type)
{
$strCte = $GLOBALS['TL_CTE'][$node][$type];
}
}
}
// if real object found
if(strlen($strCte) > 0)
{
$objCte = new $strCte($objElement);
$cssID[1] = trim(implode(' ', $classes));
$objCte->cssID = $cssID;
try {
$strBuffer = $objCte->generate();
} catch (\Exception $objError) {
//
}
}
// fallback: inject classes with rewriting the class attribute
else
{
$preg = preg_match('/class="(.*?)\"/', $strBuffer, $result);
if($preg)
{
$class = explode(' ', $result[1]);
$classes = array_unique(array_merge($classes, $class));
}
$strBuffer = preg_replace('/class="(.*?)\"/', 'class="'.trim(implode(' ', $classes)).'"', $strBuffer);
}
}
return $strBuffer;
}
// or if an article
// add space class if set and not "nospace"
if ($objElement->space_class && $objElement->space_class !== 'nospace')
{
$classes[] = $objElement->space_class;
}
// add withbg class if set
if ($objElement->withbg_class)
{
$classes[] = 'withbg';
}
// remove duplicate classes
$classes = array_unique($classes);
$endClassChecksum = md5(serialize($classes));
// only if classes changed
if ($startClassChecksum != $endClassChecksum)
{
// write classes back
$cssID[1] = trim(implode(' ', $classes));
$objElement->cssID = $cssID;
}
return $strBuffer;
}
/**
* Contao hook to check if the element is a wrapper and if yes, get id of wrapper for the child elements.
*
* @param object $objElement The contao content element object.
* @param string $strBuffer The parsed html code of the contao content element.
*
* @return string The same html code of the contao content element.
*
*/
public function checkWrapper($objElement, $strBuffer)
{
if (!isset($GLOBALS['TL_WRAPPERS']) OR !is_array($GLOBALS['TL_WRAPPERS']['start']))
{
return $strBuffer;
}
if (in_array($objElement->type, $GLOBALS['TL_WRAPPERS']['start']))
{
$GLOBALS['SG_ELEMENTS']['wrapper'][$objElement->type][] = $objElement->id;
}
if (in_array($objElement->type, $GLOBALS['TL_WRAPPERS']['stop']))
{
// try to find start element belonging to current stop element
$arrIndex = array_search($objElement->type, $GLOBALS['TL_WRAPPERS']['stop']);
if (isset($GLOBALS['TL_WRAPPERS']['start'][$arrIndex]))
{
$startWrapper = $GLOBALS['TL_WRAPPERS']['start'][$arrIndex];
if (isset($GLOBALS['SG_ELEMENTS']['wrapper'][$startWrapper]) AND !empty($GLOBALS['SG_ELEMENTS']['wrapper'][$startWrapper]))
{
// remove last start wrapper
end($GLOBALS['SG_ELEMENTS']['wrapper'][$startWrapper]);
$lwk = key($GLOBALS['SG_ELEMENTS']['wrapper'][$startWrapper]);
unset($GLOBALS['SG_ELEMENTS']['wrapper'][$startWrapper][$lwk]);
}
}
}
return $strBuffer;
}
/**
* Method to get the id of current wrapper from a child element.
*
* @param string $wrapperName The name of the start wrapper.
*
* @return integer|boolean The id of the current wrapper or false if no wrapper found.
*
*/
public static function getWrapperId($wrapperName)
{
if (!empty($wrapperName) AND isset($GLOBALS['SG_ELEMENTS']['wrapper'][$wrapperName]) AND !empty($GLOBALS['SG_ELEMENTS']['wrapper'][$wrapperName]))
{
return end($GLOBALS['SG_ELEMENTS']['wrapper'][$wrapperName]);
}
return false;
}
/**
* Add dynamic assets if required.
*
* @param string $assetsName The name of the assets lib defined in the config
*
* @return void
*/
public static function addDynamicAssets($assetsName=false)
{
if (!$assetsName OR empty($assetsName) OR !is_string($assetsName))
{
return;
}
// add dynamic css libs
if (isset($GLOBALS['SG_ELEMENTS']['css']) AND isset($GLOBALS['SG_ELEMENTS']['css'][$assetsName]) AND is_array($GLOBALS['SG_ELEMENTS']['css'][$assetsName]))
{
foreach($GLOBALS['SG_ELEMENTS']['css'][$assetsName] AS $css)
{
$GLOBALS['TL_CSS'][] = $css.'||static';
}
}
// add dynamic javascript libs
if (isset($GLOBALS['SG_ELEMENTS']['js']) AND isset($GLOBALS['SG_ELEMENTS']['js'][$assetsName]) AND is_array($GLOBALS['SG_ELEMENTS']['js'][$assetsName]))
{
foreach($GLOBALS['SG_ELEMENTS']['js'][$assetsName] AS $js)
{
$GLOBALS['TL_JAVASCRIPT'][] = $js.'|static';
}
}
}
/**
* Get Vimeo-Video-HTML.
*
* @param string $vimeoID The ID of the Vimeo-Video.
* @param string $playerSize The width and the height in html attributes (e.g. width="640" height="360").
* @param string $playerColor The player color as hex code without a the hash tag (default: #00adef).
* @param boolean $showTitle Show the title of the video (default: false).
* @param boolean $showUserImage Show the user's portrait on the video (default: false).
* @param boolean $showUserByline Show the user’s byline on the video (default: false).
* @param boolean $autoplay Activate "autoplay" for video (default: false).
* @param boolean $playerID A unique player id (default: false).
* @param boolean $activateApi Activate the vimeo api (default: false).
*
* @return string The Vimeo-HTML-Code
*/
public static function getVimeoVideo($vimeoID=false, $playerSize=false, $playerColor=false, $showTitle=false, $showUserImage=false, $showUserByline=false, $autoplay=false, $playerID=false, $activateApi=false)
{
// only if Vimeo-ID given
if (!$vimeoID OR empty($vimeoID) OR !is_string($vimeoID))
{
return false;
}
// video options array
$videoOptions = array();
// set player color
if (is_string($playerColor) AND !empty($playerColor))
{
$videoOptions[] = 'color='.urlencode($playerColor);
}
// show no video title
if (!$showTitle)
{
$videoOptions[] = 'title=0';
}
// show no user portrait
if (!$showUserImage)
{
$videoOptions[] = 'portrait=0';
}
// show no user byline
if (!$showUserImage)
{
$videoOptions[] = 'byline=0';
}
// autoplay?
if ($autoplay)
{
$videoOptions[] = 'autoplay=1';
}
// use a unique player id
if ($playerID)
{
$videoOptions[] = 'player_id='.urlencode($playerID);
}
// activate the vimeo api
if ($activateApi)
{
$videoOptions[] = 'api=1';
}
// return final Vimeo-HTML-Code
return '<iframe'.(($playerSize AND !empty($playerSize)) ? $playerSize : '').' src="//player.vimeo.com/video/'.$vimeoID.(count($videoOptions) ? '?'.implode('&', $videoOptions) : '').'" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
}
/**
* Add a request string to an URL.
*
* @param string $strRequest The string to be added
* @param array $arrUnset An optional array of keys to unset
* @param string $strUrl An optional url instead of the current url
* @param boolean $blnAddRef Add the referer ID
* @param boolean $blnAddCurQueries Add the current queries
*
* @return string The new URL
*/
public static function addToUrl($strRequest, $arrUnset=array(), $strUrl=false, $blnAddRef=false, $blnAddCurQueries=true)
{
$strRequest = preg_replace('/^&(amp;)?/i', '', $strRequest);
if ($strRequest != '' && $blnAddRef)
{
$strRequest .= '&ref=' . TL_REFERER_ID;
}
$queries = $blnAddCurQueries ? preg_split('/&(amp;)?/i', \Environment::get('queryString')) : array();
// overwrite existing parameters
foreach ($queries as $k=>$v)
{
list($key) = explode('=', $v);
if (in_array($key, $arrUnset) OR preg_match('/(^|&(amp;)?)' . preg_quote($key, '/') . '=/i', $strRequest) OR empty($v))
{
unset($queries[$k]);
}
}
$href = '?';
if (!empty($queries))
{
$href .= implode('&', $queries) . '&';
}
return preg_replace('/((&(amp;)?)|\?)$/', '', trim(((is_string($strUrl) AND !empty($strUrl)) ? $strUrl : ampersand(preg_replace('/\?.*?$/', '', \Environment::get('request')))).$href.str_replace(' ', '%20', $strRequest)));
}
/**
* Sort a multidimensional array according to a defined field (ascending or descending).
*
* @param array $multiArray
* @param string $fieldName
* @param string $sortDirection
*
* @return array
*/
public static function arrayMultiSort($multiArray, $fieldName, $sortDirection='asc')
{
$sortMultiArray = array();
foreach($multiArray AS $key => $data)
{
${$fieldName}[$key] = $data[$fieldName];
}
if (${$fieldName}!==null)
{
if ($sortDirection!=='asc')
{
arsort(${$fieldName});
}
else
{
asort(${$fieldName});
}
foreach (${$fieldName} AS $key => $value)
{
$sortMultiArray[] = $multiArray[$key];
}
}
return $sortMultiArray;
}
/**
* Process backend ajax requests.
*
* @param string $strAction The name of the ajax action.
* @param object $dc The data container object.
*
* @return void
*/
public function ajaxRequest($strAction, \DataContainer $dc)
{
switch ($strAction)
{
// file upload
case 'sg_ajaxupload':
// get dca data
$intId = ($dc->id!==null AND is_integer((int)$dc->id) AND (int)$dc->id>0) ? (int)$dc->id : 0;
$strTable = ($dc->table!==null AND trim($dc->table)!='' AND isset($GLOBALS['TL_DCA'][trim($dc->table)])) ? trim($dc->table) : false;
$strField = ($strTable AND \Input::post('name')!==null AND trim(\Input::post('name'))!='') ? trim(\Input::post('name')) : false;
$strName = $strField;
// handle the keys in "edit multiple" mode
if ($strField!==false AND \Input::get('act') == 'editAll')
{
$intId = (int)preg_replace('/.*_([0-9a-zA-Z]+)$/', '$1', $strField);
$strField = preg_replace('/(.*)_[0-9a-zA-Z]+$/', '$1', $strField);
$strName = $strField.'_'.$intId;
}
// check if strField exists
$strField = isset($GLOBALS['TL_DCA'][$strTable]['fields'][$strField]) ? $strField : false;
// if error with the dca data, die...
if ($intId===false OR $strTable===false OR $strField===false)
{
// if no id given
if ($intId===false)
{
$this->log('No ID given for DCA "'.($strTable===false ? 'undefined' : $strTable).'"', __METHOD__, TL_ERROR);
}
// otherwise...
else
{
$this->log('Field "'.($strField===false ? 'undefined' : $strField).'" does not exist in DCA "'.($strTable===false ? 'undefined' : $strTable).'"', __METHOD__, TL_ERROR);
}
header('HTTP/1.1 400 Bad Request');
die('Bad Request');
}
// get current field value
$objRow = \Database::getInstance()->prepare("SELECT ".$strField." FROM ".$strTable." WHERE id=?")->limit(1)->execute($intId);
// if field value not exists, die...
if ($objRow===null OR !$objRow->count())
{
$this->log('Could not load value for field "'.$strField.'" in DCA "'.$strTable.'" (given ID was: '.$intId.')', __METHOD__, TL_ERROR);
header('HTTP/1.1 400 Bad Request');
die('Bad Request');
}
// get current value
$varValue = deserialize($objRow->{$strField});
// initialize the widget
$class = $GLOBALS['BE_FFL']['ajax_upload'];
$objWidget = new $class($class::getAttributesFromDca($GLOBALS['TL_DCA'][$strTable]['fields'][$strField], $strName, $varValue, $strField, $strTable, $dc));
// upload file
$fileUpload = self::uploadFile($objWidget);
if ($fileUpload['error'])
{
$arrResponse = array
(
'success' => false,
'error' => $fileUpload['error'],
'preventRetry' => true
);
}
else
{
$arrResponse = array
(
'success' => true,
'file' => $fileUpload['file'],
'html' => $fileUpload['html']
);
}
// return json response
echo json_encode($arrResponse); exit;
break;
}
}
/**
* Process a file upload.
*
* @param object $objWidget The widget object of the file upload.
*
* @return array The result of the file upload.
*/
public static function uploadFile(\Widget $objWidget)
{
// validate and upload file
$strFile = $objWidget->validateUpload();
// default return
$arrReturn = array
(
'success' => false,
'error' => false,
'file' => false,
'html' => false
);
// check uploaded file
if ($objWidget->hasErrors())
{
$arrReturn['error'] = $objWidget->getErrorAsString();
}
else
{
// generate the file item
$generatedFile = $objWidget->generateFileItem(array('path' => $strFile));
// if error on file item generation
if (!$generatedFile)
{
$arrReturn['error'] = $GLOBALS['TL_LANG']['MSC']['ajax_upload_errors']['unknown'];
}
else
{
$arrReturn['success'] = true;
$arrReturn['file'] = $strFile;
$arrReturn['html'] = $generatedFile['html'];
}
}
// return response
return $arrReturn;
}
/**
* Add the required javascript files if an ajax upload field was added to the page.
*
* @param string $strName The name of the ajax upload field.
*
* @return void
*/
public function addUploadAssets($strName)
{
if (isset($GLOBALS['TL_DCA'][$strName]) AND is_array($GLOBALS['TL_DCA'][$strName]['fields']))
{
foreach($GLOBALS['TL_DCA'][$strName]['fields'] AS $name => $field)
{
if (isset($field['inputType']) AND $field['inputType']=='ajax_upload')
{
// add dynamic assets
\SgElements::addDynamicAssets('ajax_upload');
break;
}
}
}
}
/**
* Form validators.
*
* @param string $strRegexp The name of the validation method.
* @param string $varValue The value of the field.
* @param object $objWidget A widget object.
*
* @return boolean If validation found true, otherwise false.
*/
public function validation($strRegexp, $varValue, \Widget $objWidget)
{
if ($strRegexp=='integer')
{
if (!preg_match('/^[0-9]+$/', $varValue))
{
$objWidget->addError(str_replace('%v', $varValue, str_replace('%s', $objWidget->label, $GLOBALS['TL_LANG']['MSC']['validationErrors']['integer'])));
}
return true;
}
else if ($strRegexp=='year')
{
if (!preg_match('/^[0-9]{4}$/', $varValue) OR (int)$varValue<1000)
{
$objWidget->addError(str_replace('%v', $varValue, str_replace('%s', $objWidget->label, $GLOBALS['TL_LANG']['MSC']['validationErrors']['year'])));
}
else if ($objWidget->year_from!==null AND (int)$varValue<(int)$objWidget->year_from)
{
$objWidget->addError(str_replace('%e', $objWidget->year_from, str_replace('%v', $varValue, str_replace('%s', $objWidget->label, $GLOBALS['TL_LANG']['MSC']['validationErrors']['year_from']))));
}
else if ($objWidget->year_to!==null AND (int)$varValue>(int)$objWidget->year_to)
{
$objWidget->addError(str_replace('%e', $objWidget->year_to, str_replace('%v', $varValue, str_replace('%s', $objWidget->label, $GLOBALS['TL_LANG']['MSC']['validationErrors']['year_to']))));
}
return true;
}
return false;
}
/**
* Transliterate a string.
*
* @param string $string The string to transliterate.
*
* @return string|boolean The transliteraded string or false.
*/
public static function transliterate($string=false)
{
if (is_string($string))
{
$transliteration_array = array
(
'ä' => 'ae',
'Ä' => 'Ae',
'ë' => 'e',
'Ë' => 'e',
'ï' => 'i',
'Ï' => 'I',
'ö' => 'oe',
'Ö' => 'Oe',
'ü' => 'ue',
'Ü' => 'Ue',
'ÿ' => 'y',
'Ÿ' => 'Y',
'ß' => 'ss',
'á' => 'a',
'Á' => 'A',
'é' => 'e',
'É' => 'E',
'í' => 'i',
'Í' => 'I',
'ó' => 'o',
'Ó' => 'O',
'ú' => 'u',
'Ú' => 'U',
'ñ' => 'n',
'Ñ' => 'N',
'à' => 'a',
'À' => 'A',
'è' => 'e',
'È' => 'E',
'ì' => 'i',
'Ì' => 'I',
'ò' => 'o',
'Ò' => 'O',
'ù' => 'u',
'Ù' => 'U',
'â' => 'a',
'Â' => 'A',
'ê' => 'e',
'Ê' => 'E',
'î' => 'i',
'Î' => 'I',
'ô' => 'o',
'Ô' => 'O',
'û' => 'u',
'Û' => 'U',
'æ' => 'ae',
'Æ' => 'oe',
'œ' => 'ae',
'Œ' => 'oe',
'ç' => 'c',
'Ç' => 'C',
'ø' => 'oe',
'Ø' => 'Oe',
'č' => 'c',
'Č' => 'C',
'ď' => 'd',
'Ď' => 'D',
'ě' => 'e',
'Ě' => 'E',
'ň' => 'n',
'Ň' => 'N',
'ř' => 'r',
'Ř' => 'R',
'š' => 's',
'Š' => 'S',
'ť' => 't',
'Ť' => 'T',
'ů' => 'u',
'Ů' => 'U',
'ý' => 'y',
'Ý' => 'Y',
'ž' => 'z',
'Ž' => 'Z',
'ą' => 'a',
'Ą' => 'A',
'ć' => 'c',
'Ć' => 'C',
'ę' => 'e',
'Ę' => 'E',
'ł' => 'l',
'Ł' => 'L',
'ń' => 'n',
'Ń' => 'N',
'ś' => 's',
'Ś' => 'S',
'ź' => 'z',
'Ź' => 'Z',
'ż' => 'z',
'Ż' => 'Z',
'ğ' => 'g',
'Ğ' => 'G',
'i' => 'i',
'İ' => 'I',
'ı' => 'i',
'I' => 'I',
'ş' => 's',
'Ş' => 'S',
'а' => 'a',
'А' => 'A',
'б' => 'b',
'Б' => 'B',
'в' => 'v',
'В' => 'V',
'г' => 'g',
'Г' => 'G',
'д' => 'd',
'Д' => 'D',
'ё' => 'jo',
'Ё' => 'Jo',
'Е' => 'E',
'е' => 'e',
'Ж' => 'Zh',
'ж' => 'zh',
'З' => 'Z',
'з' => 'z',
'И' => 'I',
'и' => 'i',
'Й' => 'J',
'й' => 'j',
'К' => 'K',
'к' => 'k',
'Л' => 'L',
'л' => 'l',
'М' => 'M',
'м' => 'm',
'Н' => 'N',
'н' => 'n',
'О' => 'O',
'о' => 'o',
'П' => 'P',
'п' => 'p',
'Р' => 'R',
'р' => 'r',
'С' => 'S',
'с' => 's',
'Т' => 'T',
'т' => 't',
'У' => 'U',
'у' => 'u',
'ф' => 'f',
'Ф' => 'F',
'Х' => 'H',
'х' => 'h',
'Ц' => 'C',
'ц' => 'c',
'Ч' => 'Ch',
'ч' => 'ch',
'Ш' => 'Sh',
'ш' => 'sh',
'Щ' => 'Shh',
'щ' => 'shh',
'Ъ' => '',
'ъ' => '',
'ы' => 'y',
'Ы' => 'Y',
'Ь' => '',
'ь' => '',
'Э' => 'Je',
'э' => 'je',
'Ю' => 'Ju',
'ю' => 'ju',
'Я' => 'Ja',
'я' => 'ja',
'Ґ' => 'G',
'ґ' => 'g',
'Ў' => 'U',
'ў' => 'u',
'Є' => 'Je',
'є' => 'je',
'Ї' => 'Ji',
'ї' => 'ji',
'І' => 'I',
'і' => 'i'
);
return strtr($string, $transliteration_array);
}
return false;
}
/**
* Convert a string to a valid alias.
*
* @param string $string The string to convert.
* @param boolean $strtolower Convert the string to lowercase?
* @param integer|boolean $length Limit the length of the string?
*
* @return string|boolean The converted string.
*/
public static function strToValidAlias($string=false, $strtolower=true, $length=200)
{
$string = self::transliterate(preg_replace('/(\\r|\\n)+/s', ' ', $string));
if (is_string($string))
{
$replace_from = array
(
'/(–|–|‐|‐|‐|‐|\s|\/|\\\|,|;|:|\*|#|\+)+/',
'/([^\.^a-z^0-9^-])/i',
'/-+/',
'/-+$/',
'/^-+/'
);
$replace_to = array
(
'-',
'',
'-',
'',
''
);
$string = preg_replace($replace_from, $replace_to, trim($string));
$string = $strtolower ? strtolower($string) : $string;
return ($length AND is_numeric($length)) ? substr($string, 0, $length) : $string;
}
return false;
}
/**
* Convert a string to a valid file name.
*
* @param string $string The string to convert.
* @param integer|boolean $length Limit the length of the string?
*
* @return string|boolean The converted string.
*/
public static function strToValidFilename($string=false, $length=200)
{
if (is_string($string))
{
$string_array = @explode('.', $string);
if (is_array($string_array) AND count($string_array))
{
foreach($string_array AS $k => $s)
{
$string_array[$k] = ($ps = self::strToValidAlias($s)) ? $ps : '';
}
$string = @implode('.', $string_array);
if ($length AND is_numeric($length))
{
if (($c=count($string_array))>1)
{
$ext = $string_array[$c-1];
unset($string_array[$c-1]);
$string = substr(@implode('.', $string_array), 0, (($nl=$length-(strlen($ext)+1))>0 ? $nl : 0)).'.'.$ext;
}
return substr($string, 0, $length);
}
return $string;
}
}
return false;
}
/**
* Get all style sheet file paths (even the combined)
*
* @return array The style sheet files.
*/
public static function getStyleSheetFiles()
{
$cssFiles = array();
// new combiner
$objCombiner = new \Combiner();
// add the CSS framework style sheets
if (!empty($GLOBALS['TL_FRAMEWORK_CSS']) AND is_array($GLOBALS['TL_FRAMEWORK_CSS']))
{
foreach (array_unique($GLOBALS['TL_FRAMEWORK_CSS']) AS $stylesheet)
{
if (!\Config::get('debugMode'))
{
$objCombiner->add($stylesheet);
}
else
{
$cssFiles[] = \Controller::addStaticUrlTo($stylesheet);
}
}
}
// add the internal style sheets
if (!empty($GLOBALS['TL_CSS']) AND is_array($GLOBALS['TL_CSS']))
{
foreach (array_unique($GLOBALS['TL_CSS']) AS $stylesheet)
{
$options = \String::resolveFlaggedUrl($stylesheet);
if ($options->static AND !\Config::get('debugMode'))
{
$objCombiner->add($stylesheet, filemtime(TL_ROOT . '/' . $stylesheet), $options->media);
}
else
{
$cssFiles[] = \Controller::addStaticUrlTo($stylesheet);
}
}
}
// add the user style sheets
if (!empty($GLOBALS['TL_USER_CSS']) AND is_array($GLOBALS['TL_USER_CSS']))
{
foreach (array_unique($GLOBALS['TL_USER_CSS']) AS $stylesheet)
{
$options = \String::resolveFlaggedUrl($stylesheet);
if ($options->static AND !\Config::get('debugMode'))
{
if ($options->mtime === null)
{
$options->mtime = filemtime(TL_ROOT . '/' . $stylesheet);
}
$objCombiner->add($stylesheet, $options->mtime, $options->media);
}
else
{
$cssFiles[] = \Controller::addStaticUrlTo($stylesheet);
}
}
}
// get the aggregated style sheet file
if ($objCombiner->hasEntries())
{
$cssFiles[] = $objCombiner->getCombinedFile();
}
// return unique style sheet files
return array_unique($cssFiles);
}
/**
* Get all inline css
*
* @return string The inline css.
*/
public static function getInlineCSS()
{
$inlineCss = '';
foreach(self::getStyleSheetFiles() AS $cssFile)
{
if (file_exists(TL_ROOT.'/'.$cssFile))
{
$inlineCss .= file_get_contents(TL_ROOT.'/'.$cssFile);
}
}
$inlineCss = trim($inlineCss);
if (!empty($inlineCss))
{
$inlineCss = '<style>'.$inlineCss.'</style>';
}
return $inlineCss;
}
}