Sindbad~EG File Manager
<?php
/**
* Element: Custom Field Value
* Displays a custom key field (use in combination with customfieldkey)
*
* @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;
class JFormFieldNN_CustomFieldValue extends JFormField
{
public $type = 'CustomFieldValue';
private $params = null;
protected function getLabel()
{
return '';
}
protected function getInput()
{
$this->params = $this->element->attributes();
$label = ($this->get('label') ? $this->get('label') : '');
$size = ($this->get('size') ? 'size="' . $this->get('size') . '"' : '');
$class = ($this->get('class') ? 'class="' . $this->get('class') . '"' : 'class="text_area"');
$this->value = htmlspecialchars(html_entity_decode($this->value, ENT_QUOTES), ENT_QUOTES);
return '</div></div></div><input type="text" name="' . $this->name . '" id="' . $this->id . '" value="' . $this->value
. '" placeholder="' . JText::_($label) . '" title="' . JText::_($label) . '" ' . $class . ' ' . $size . ' />';
}
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