uawdijnntqw1x1x1
IP : 216.73.217.24
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
/
SmartSlider3
/
Renderable
/
Component
/
Style.php
/
/
<?php namespace Nextend\SmartSlider3\Renderable\Component; class Style { public $styles = array( 'all' => array(), 'desktoplandscape' => array(), 'tabletlandscape' => array(), 'tabletportrait' => array(), 'mobilelandscape' => array(), 'mobileportrait' => array(), ); /** * @var AbstractComponent */ protected $component; /** * Style constructor. * * @param AbstractComponent $component */ public function __construct($component) { $this->component = $component; } public function add($device, $selector, $css) { if (!empty($css)) { if ($device == 'desktopportrait') { $device = 'all'; } $this->addOnly($device, $selector, $css); } } public function addOnly($device, $selector, $css) { if (!empty($css)) { if (!isset($this->styles[$device][$selector])) { $this->styles[$device][$selector] = array(); } $this->styles[$device][$selector][] = $css; } } }
/home/locationbo/www/libraries/smartslider3/src/SmartSlider3/Renderable/Component/Style.php