uawdijnntqw1x1x1
IP : 216.73.217.11
Hostname : webm007.cluster114.gra.hosting.ovh.net
Kernel : Linux webm007.cluster114.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
locationbo
/
www
/
libraries
/
smartslider3
/
src
/
.
/
.
/
Framework
/
Style
/
StyleParser.php
/
/
<?php namespace Nextend\Framework\Style; use Nextend\Framework\Misc\Base64; use Nextend\Framework\Model\Section; class StyleParser { /** * @param $data * * @return string */ public static function parse($data) { if (empty($data)) { return ''; } else if (is_numeric($data)) { /** * Linked style */ $style = Section::getById($data, 'style'); if (!$style) { /** * Linked style not exists anymore */ return ''; } if (is_string($style['value'])) { /** * Old format when value stored as Base64 */ $decoded = $style['value']; if ($decoded[0] != '{') { $decoded = Base64::decode($decoded); } return $decoded; } /** * Value stored as array */ $value = json_encode($style['value']); if ($value == false) { return ''; } return $value; } else if ($data[0] != '{') { return Base64::decode($data); } return $data; } }
/home/locationbo/www/libraries/smartslider3/src/././Framework/Style/StyleParser.php