| Current Path : /home/juvelize/www/modules/mod_jmnewspro/elements/ |
| Current File : /home/juvelize/www/modules/mod_jmnewspro/elements/asset.php |
<?php
/*
#------------------------------------------------------------------------
# Package - JoomlaMan JMSlideShow
# Version 1.0
# -----------------------------------------------------------------------
# Author - JoomlaMan http://www.joomlaman.com
# Copyright © 2012 - 2013 JoomlaMan.com. All Rights Reserved.
# @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
# Websites: http://www.JoomlaMan.com
#------------------------------------------------------------------------
*/
//-- No direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.form.formfield');
class JFormFieldAsset extends JFormField {
protected $type = 'Asset';
protected function getInput() {
$doc = JFactory::getDocument();
jimport('joomla.version');
$version = new JVersion();
$joomla_version = (int) JVERSION;
if ($joomla_version < 3) {
$doc->addScript(JURI::root() . $this->element['path'] . 'js/jquery.min.js');
$doc->addScript(JURI::root() . $this->element['path'] . 'js/script.js');
$doc->addScript(JURI::root() . $this->element['path'] . 'js/jquery.mousewheel.js');
$doc->addScript(JURI::root() . $this->element['path'] . 'js/jScrollPane.js');
$doc->addScript(JURI::root() . $this->element['path'] . 'js/jquery.jmfields.js');
$doc->addStyleSheet(JURI::root() . $this->element['path'] . 'css/jm_fields.css');
} elseif ($joomla_version >= 3) {
$doc->addScript(JURI::root() . $this->element['path'] . 'js/script3.js');
}
return null;
}
}