<?php /*--------------------------------------------------------------- # SP Tab - Next generation tab module for joomla # --------------------------------------------------------------- # Author - JoomShaper http://www.joomshaper.com # Copyright (C) 2010 - 2014 JoomShaper.com. All Rights Reserved. # license - GNU/GPL V2 or later # Websites: http://www.joomshaper.com -----------------------------------------------------------------*/ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); jimport('joomla.form.formfield'); class JFormFieldAsset extends JFormField { protected $type = 'Asset'; protected function getInput() { // Load the method jquery script. JHtml::_('jquery.framework'); $doc = JFactory::getDocument(); $doc->addScript(JURI::root(true).'/modules/mod_sptab/elements/js/script.js'); return null; } }