| Current Path : /home/sunflowe/www2/vacancesfloride/administrator/components/com_installer/models/fields/ |
| Current File : /home/sunflowe/www2/vacancesfloride/administrator/components/com_installer/models/fields/group.php |
<?php
/**
* @package Joomla.Administrator
* @subpackage com_installer
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License, see LICENSE.php
*/
// No direct access.
defined('_JEXEC') or die;
/**
* Form Field Place class.
*
* @package Joomla.Administrator
* @subpackage com_installer
* @since 1.6
*/
class JFormFieldGroup extends JFormField
{
/**
* The field type.
*
* @var string
*/
protected $type = 'Group';
/**
* Method to get the field input.
*
* @return string The field input.
* @since 1.6
*/
protected function getInput()
{
$onchange = $this->element['onchange'] ? ' onchange="'.(string) $this->element['onchange'].'"' : '';
$options = array();
foreach ($this->element->children() as $option) {
$options[] = JHtml::_('select.option', (string)$option->attributes()->value, JText::_(trim((string) $option)));
}
$dbo = JFactory::getDbo();
$query = $dbo->getQuery(true);
$query->select('DISTINCT folder');
$query->from('#__extensions');
$query->where('folder != '.$dbo->quote(''));
$query->order('folder');
$dbo->setQuery((string)$query);
$folders = $dbo->loadColumn();
foreach($folders as $folder) {
$options[] = JHtml::_('select.option', $folder, $folder);
}
$return = JHtml::_('select.genericlist', $options, $this->name, $onchange, 'value', 'text', $this->value, $this->id);
return $return;
}
}