uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm009.cluster128.gra.hosting.ovh.net
Kernel : Linux webm009.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
chauffn
/
vuzelia
/
2023
/
cf455
/
.
/
..
/
components
/
com_sppagebuilder
/
parser
/
addon-utils.php
/
/
<?php /** * @package SP Page Builder * @author JoomShaper https://www.joomshaper.com * @copyright Copyright (c) 2010 - 2025 JoomShaper * @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later */ // No direct access defined('_JEXEC') or die('Restricted access'); /** * Helper class for handling the lodash string. * * @since 4.0.0 */ final class AddonUtils { public static $defaultDevice = 'xl'; public static function parseMediaData($media) { if (empty($media)) { return ''; } if (\is_object($media) && isset($media->src)) { return $media->src; } if (\is_array($media) && isset($media['src'])) { return $media['src']; } return $media; } public static function parseDeviceData($data, $device = '') { if (empty($data)) { return ''; } $device = !empty($device) ? $device : self::$defaultDevice; if (\is_object($data) && isset($data->$device)) { return $data->$device; } return $data; } }
/home/chauffn/vuzelia/2023/cf455/./../components/com_sppagebuilder/parser/addon-utils.php