| 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: Slide
* Element to create a new slide pane
*
* @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();
// Load common functions
require_once JPATH_PLUGINS.DS.'system'.DS.'nnframework'.DS.'helpers'.DS.'functions.php';
/**
* Slide Element
*/
class nnFieldSlide
{
var $_version = '11.9.1';
function getInput( $name, $id, $value, $params, $children, $j15 = 0 )
{
$this->params = $params;
$label = $this->def( 'label' );
$description = $this->def( 'description' );
$lang_file = $this->def( 'language_file' );
$show_apply = $this->def( 'show_apply' );
$html = '</td></tr></table></div></div>';
$html .= '<div class="panel"><h3 class="jpane-toggler title" id="advanced-page"><span>';
$html .= NNFrameworkFunctions::html_entity_decoder( JText::_( $label ) );
$html .= '</span></h3>';
$html .= '<div class="jpane-slider content"><table width="100%" class="paramlist admintable" cellspacing="1"><tr><td colspan="2" class="paramlist_value">';
if ( $description ) {
// variables
$v1 = $this->def( 'var1' );
$v2 = $this->def( 'var2' );
$v3 = $this->def( 'var3' );
$v4 = $this->def( 'var4' );
$v5 = $this->def( 'var5' );
$description = NNFrameworkFunctions::html_entity_decoder( trim( JText::sprintf( $description, $v1, $v2, $v3, $v4, $v5 ) ) );
}
if ( $lang_file ) {
jimport( 'joomla.filesystem.file' );
// Include extra language file
$language =& JFactory::getLanguage();
$lang = str_replace( '_', '-', $language->getTag() );
$inc = '';
$lang_path = 'language'.DS.$lang.DS.$lang.'.'.$lang_file.'.inc.php';
if ( JFile::exists( JPATH_ADMINISTRATOR.DS.$lang_path ) ) {
$inc = JPATH_ADMINISTRATOR.DS.$lang_path;
} else if ( JFile::exists( JPATH_SITE.DS.$lang_path ) ) {
$inc = JPATH_SITE.DS.$lang_path;
}
if ( !$inc && $lang != 'en-GB' ) {
$lang = 'en-GB';
$lang_path = 'language'.DS.$lang.DS.$lang.'.'.$lang_file.'.inc.php';
if ( JFile::exists( JPATH_ADMINISTRATOR.DS.$lang_path ) ) {
$inc = JPATH_ADMINISTRATOR.DS.$lang_path;
} else if ( JFile::exists( JPATH_SITE.DS.$lang_path ) ) {
$inc = JPATH_SITE.DS.$lang_path;
}
}
if ( $inc ) {
include $inc;
}
}
if ( $description ) {
$description = str_replace( 'span style="font-family:monospace;"', 'span class="nn_code"', $description );
if ( $description['0'] != '<' ) {
$description = '<p>'.$description.'</p>';
}
$class = 'panel nn_panel nn_panel_description';
if ( $j15 ) {
$class .= ' nn_panel_15';
}
$html .= '<div class="'.$class.'"><div class="nn_block nn_title">';
if ( $show_apply ) {
$apply_button = '<a href="#" onclick="submitbutton( \'apply\' );" title="'.JText::_( 'Apply' ).'"><img align="right" border="0" alt="'.JText::_( 'Apply' ).'" src="images/tick.png"/></a>';
$html .= $apply_button;
}
$html .= $description;
$html .= '<div style="clear: both;"></div></div></div>';
}
return $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_Slide extends JElement
{
/**
* Element name
*
* @access protected
* @var string
*/
var $_name = 'Slide';
function fetchTooltip( $label, $description, &$node, $control_name, $name )
{
return;
}
function fetchElement( $name, $value, &$node, $control_name )
{
$this->_nnfield = new nnFieldSlide();
return $this->_nnfield->getInput( $control_name.'['.$name.']', $control_name.$name, $value, $node->attributes(), $node->children(), 1 );
}
}
} else {
// For Joomla 1.6
class JFormFieldNN_Slide extends JFormField
{
/**
* The form field type
*
* @var string
*/
public $type = 'Slide';
protected function getLabel()
{
return;
}
protected function getInput()
{
$this->_nnfield = new nnFieldSlide();
return $this->_nnfield->getInput( $this->name, $this->id, $this->value, $this->element->attributes(), $this->element->children() );
}
}
}