Your IP : 216.73.216.240


Current Path : /home/juvelize/www/modules/mod_bt_contentslider/admin/formfield/
Upload File :
Current File : /home/juvelize/www/modules/mod_bt_contentslider/admin/formfield/asset.php

<?php
/**
 * @package 	mod_bt_contentslider - BT ContentSlider Module
 * @version		1.1
 * @created		Oct 2011

 * @author		BowThemes
 * @email		support@bowthems.com
 * @website		http://bowthemes.com
 * @support		Forum - http://bowthemes.com/forum/
 * @copyright	Copyright (C) 2012 Bowthemes. All rights reserved.
 * @license		http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 *
 */

// no direct access
defined('_JEXEC') or die('Restricted access');

jimport('joomla.form.formfield');

class JFormFieldAsset extends JFormField {

    protected $type = 'Asset';

    protected function getInput() {
		JHTML::_('behavior.framework');	
		$document	= &JFactory::getDocument();		
		if (!version_compare(JVERSION, '3.0', 'ge')) {
			$checkJqueryLoaded = false;
			$header = $document->getHeadData();
			foreach($header['scripts'] as $scriptName => $scriptData)
			{
				if(substr_count($scriptName,'/jquery')){
					$checkJqueryLoaded = true;
				}
			}
				
			//Add js
			if(!$checkJqueryLoaded) 
			$document->addScript(JURI::root().$this->element['path'].'js/jquery.min.js');
			$document->addScript(JURI::root().$this->element['path'].'js/chosen.jquery.min.js');		
			$document->addScript(JURI::root().$this->element['path'].'js/colorpicker/colorpicker.js');
			$document->addScript(JURI::root().$this->element['path'].'js/bt.js');

			//Add css         
			$document->addStyleSheet(JURI::root().$this->element['path'].'css/bt.css');
			$document->addStyleSheet(JURI::root().$this->element['path'].'js/colorpicker/colorpicker.css');        
			$document->addStyleSheet(JURI::root().$this->element['path'].'css/chosen.css');        
			$document->addStyleDeclaration('.switcher-yes,.switcher-no{background-image:url('.JURI::root().JText::_('YESNO_IMAGE').')}');
		
		}else{
			$document->addScript(JURI::root().$this->element['path'].'js/colorpicker/colorpicker.js');
			$document->addScript(JURI::root().$this->element['path'].'js/bt.js');
			//Add css         
			$document->addStyleSheet(JURI::root().$this->element['path'].'css/bt.css');
			$document->addStyleSheet(JURI::root().$this->element['path'].'js/colorpicker/colorpicker.css'); 
		
		}
        
        return null;
    }
}
?>