Sindbad~EG File Manager

Current Path : /home/sarayaglobal/saraya.com.my/plugins/system/nnframework/fields/
Upload File :
Current File : /home/sarayaglobal/saraya.com.my/plugins/system/nnframework/fields/multiselect.php

<?php
/**
 * Element: MultiSelect
 * Displays a multiselectbox
 *
 * @package         NoNumber Framework
 * @version         14.10.7
 *
 * @author          Peter van Westen <peter@nonumber.nl>
 * @link            http://www.nonumber.nl
 * @copyright       Copyright © 2014 NoNumber All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

defined('_JEXEC') or die;

/**
 * MultiSelect Element
 */
class JFormFieldNN_MultiSelect extends JFormField
{
	public $type = 'MultiSelect';
	private $params = null;

	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');

		require_once JPATH_PLUGINS . '/system/nnframework/helpers/html.php';

		return nnHtml::selectlist($options, $this->name, $this->value, $this->id, $size, 1);
	}

	private function get($val, $default = '')
	{
		return (isset($this->params[$val]) && (string) $this->params[$val] != '') ? (string) $this->params[$val] : $default;
	}
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists