| Current Path : /var/www/administrator/components/com_comment/models/fields/ |
| Current File : /var/www/administrator/components/com_comment/models/fields/ccommentplugins.php |
<?php
/**
* @author Daniel Dimitrov - compojoom.com
* @date: 17.02.13
*
* @copyright Copyright (C) 2008 - 2013 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die('Restricted access');
class JFormFieldCcommentplugins extends JFormField
{
/**
* The form field type.
*
* @var string
*/
protected $type = 'ccommentplugins';
protected function getInput()
{
$html = array();
$attr = '';
// Initialize some field attributes.
$attr .= $this->element['class'] ? ' class="' . (string) $this->element['class'] . '"' : '';
// To avoid user's confusion, readonly="true" should imply disabled="true".
if ((string) $this->element['readonly'] == 'true' || (string) $this->element['disabled'] == 'true')
{
$attr .= ' disabled="disabled"';
}
$attr .= $this->element['size'] ? ' size="' . (int) $this->element['size'] . '"' : '';
$attr .= $this->multiple ? ' multiple="multiple"' : '';
// Initialize JavaScript field attributes.
$attr .= $this->element['onchange'] ? ' onchange="' . (string) $this->element['onchange'] . '"' : '';
// Get the field options.
$options = (array) $this->getOptions();
// Create a read-only list (no name) with a hidden input to store the value.
if ((string) $this->element['readonly'] == 'true')
{
$html[] = JHtml::_('select.genericlist', $options, '', trim($attr), 'value', 'text', $this->value, $this->id);
$html[] = '<input type="hidden" name="' . $this->name . '" value="' . $this->value . '"/>';
}
// Create a regular list.
else
{
$html[] = JHtml::_('select.genericlist', $options, $this->name, trim($attr), 'id', 'title', $this->value, $this->id);
}
return implode($html);
}
/**
* Method to get the field options.
*
* @return array The field option objects.
*/
protected function getOptions()
{
$valueIds = $this->element['ids'] ? 1 : 0;
$settingsModel = JModelLegacy::getInstance('Settings', 'ccommentModel');
$components = $settingsModel->getItems();
$values = array();
foreach ($components as $value)
{
if ($valueIds)
{
$values[$value->id] = $value->component;
}
else
{
$values[$value->component] = $value->component;
}
}
return $values;
}
}