| Server IP : 180.180.241.3 / Your IP : 216.73.216.216 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/modules/mod_sptab/elements/ |
Upload File : |
<?php
/*---------------------------------------------------------------
# SP Tab - Next generation tab module for joomla
# ---------------------------------------------------------------
# Author - JoomShaper http://www.joomshaper.com
# Copyright (C) 2010 - 2011 JoomShaper.com. All Rights Reserved.
# license - PHP files are licensed under GNU/GPL V2
# license - CSS - JS - IMAGE files are Copyrighted material
# Websites: http://www.joomshaper.com - http://www.joomxpert.com
-----------------------------------------------------------------*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
class JElementAsset extends JElement
{
var $_name = 'Asset';
function fetchTooltip($label, $description, &$node, $control_name, $name) {
return;
}
function fetchElement( $name, $value, &$node, $control_name ) {
$doc = &JFactory::getDocument();
$doc->addScript(JURI::root(true).'/modules/mod_sptab/elements/js/jquery.js');
$doc->addScript(JURI::root(true).'/modules/mod_sptab/elements/js/script.js');
$doc->addScript(JURI::root(true).'/modules/mod_sptab/elements/js/colorpicker.js');
$doc->addStylesheet(JURI::root(true).'/modules/mod_sptab/elements/css/style.css');
$doc->addStylesheet(JURI::root(true).'/modules/mod_sptab/elements/css/colorpicker.css');
return null;
}
}
?>