| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/rescommittee/libraries/regularlabs/fields/ |
Upload File : |
<?php
/**
* @package Regular Labs Library
* @version 18.10.13430
*
* @author Peter van Westen <info@regularlabs.com>
* @link http://www.regularlabs.com
* @copyright Copyright © 2018 Regular Labs All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
defined('_JEXEC') or die;
use Joomla\CMS\HTML\HTMLHelper as JHtml;
use Joomla\CMS\Language\Text as JText;
if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php'))
{
return;
}
require_once JPATH_LIBRARIES . '/regularlabs/autoload.php';
class JFormFieldRL_MultiSelect extends \RegularLabs\Library\Field
{
public $type = 'MultiSelect';
protected function getInput()
{
$this->params = $this->element->attributes();
if ( ! is_array($this->value))
{
$this->value = explode(',', $this->value);
}
foreach ($this->element->children() as $item)
{
$item_value = (string) $item['value'];
$item_name = JText::_(trim((string) $item));
$item_disabled = (int) $item['disabled'];
$options[] = JHtml::_('select.option', $item_value, $item_name, 'value', 'text', $item_disabled);
}
$size = (int) $this->get('size');
return $this->selectList($options, $this->name, $this->value, $this->id, $size, true);
}
}