| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 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 : /inetpub/wwwroot/icd/plugins/system/nnframework/fields/ |
Upload File : |
<?php
/**
* Element: ColorPicker
* Displays a textfield with a color picker
*
* @package NoNumber! Framework
* @version 11.9.1
*
* @author Peter van Westen <peter@nonumber.nl>
* @link http://www.nonumber.nl
* @copyright Copyright © 2011 NoNumber! All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/
// No direct access
defined( '_JEXEC' ) or die();
/**
* ColorPicker Element
*
* Available extra parameters:
* title The title
*/
class nnFieldColorPicker
{
var $_version = '11.9.1';
function getInput( $name, $id, $value, $params, $children, $j15 = 0 )
{
$this->params = $params;
$document =& JFactory::getDocument();
$document->addStyleSheet( JURI::root(true).'/plugins/system/nnframework/fields/colorpicker/js_color_picker_v2.css?v='.$this->_version );
$document->addScript( JURI::root(true).'/plugins/system/nnframework/fields/colorpicker/color_functions.js?v='.$this->_version );
$document->addScript( JURI::root(true).'/plugins/system/nnframework/fields/colorpicker/js_color_picker_v2.js?v='.$this->_version );
$value = strtoupper( preg_replace( '#[^a-z0-9]#si', '', $value ) );
$color = $value;
if ( !$color ) {
$color = 'DDDDDD';
}
$html = array();
if ( !$j15 ) {
$html[] = '<fieldset id="'.$id.'" class="radio">';
}
$html[] = '<label class="radio" for="'.$id.'" style="width:auto;min-width:0;padding-right:0;"># </label>';
$html[] = '<input onclick="showColorPicker(this,this)" onchange="this.style.borderRightColor=\'#\'+this.value" style="border:1px solid silver;border-right-color:#'.$color.';border-right-width:15px" type="text" name="'.$name.'" id="'.$id.'" value="'.$value.'" class="nn_color" maxlength="6" size="8" />';
if ( !$j15 ) {
$html[] = '</fieldset>';
}
return implode( '', $html );
}
private function def( $val, $default = '' )
{
return ( isset( $this->params[$val] ) && (string) $this->params[$val] != '' ) ? (string) $this->params[$val] : $default;
}
}
if ( version_compare( JVERSION, '1.6.0', 'l' ) ) {
// For Joomla 1.5
class JElementNN_ColorPicker extends JElement
{
/**
* Element name
*
* @access protected
* @var string
*/
var $_name = 'ColorPicker';
function fetchElement( $name, $value, &$node, $control_name )
{
$this->_nnfield = new nnFieldColorPicker();
return $this->_nnfield->getInput( $control_name.'['.$name.']', $control_name.$name, $value, $node->attributes(), $node->children(), 1 );
}
}
} else {
// For Joomla 1.6
class JFormFieldNN_ColorPicker extends JFormField
{
/**
* The form field type
*
* @var string
*/
public $type = 'ColorPicker';
protected function getInput()
{
$this->_nnfield = new nnFieldColorPicker();
return $this->_nnfield->getInput( $this->name, $this->id, $this->value, $this->element->attributes(), $this->element->children() );
}
}
}