uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.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
/
pteabiscqq
/
www
/
188ee
/
..
/
includes
/
..
/
modules
/
mod_unite_revolution2
/
fields
/
.
/
slider.php
/
/
<?php /** * @package Unite Slider for Joomla 1.7-2.5 * @author UniteCMS.net * @copyright (C) 2012 Unite CMS, All Rights Reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html **/ defined('JPATH_BASE') or die; /** * Supports a modal article picker. * * @package Joomla.Administrator * @subpackage com_content * @since 1.6 */ class JFormFieldSlider extends JFormField { /** * The form field type. * * @var string * @since 1.6 */ protected $type = 'Slider'; /** * * include all the files needed */ protected function requireFramework(){ $pathComponent = JPATH_ADMINISTRATOR."/components/com_uniterevolution2/"; require_once $pathComponent."includes.php"; } /** * Method to get the field input markup. * * @return string The field input markup. * @since 1.6 */ protected function getInput() { $this->requireFramework(); $slider = new RevSlider(); $arrSliders = $slider->getArrSlidersShort(); $selectedID = $this->value; if(empty($selectedID)) $selectedID = JRequest::getCmd("sliderid"); $html = "<select id='{$this->id}_id' name='{$this->name}'>"; foreach($arrSliders as $id=>$title){ $selected = ""; if($id == $selectedID) $selected = 'selected="selected"'; $html .= "<option value='$id' $selected>$title</option>"; } $html .= "</select>"; return $html; } }
/home/pteabiscqq/www/188ee/../includes/../modules/mod_unite_revolution2/fields/./slider.php