HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/iestorre/informatica/modules/mod_weatheraholic/mod_weatheraholic.php
<?php	
/*-------------------------------------------------------------------------------	
# mod_weatheraholic - A FREE weather module for Joomla 3.x v1.4.2	
# -------------------------------------------------------------------------------	
# author    GraphicAholic	
# copyright Copyright (C) 2011 GraphicAholic.com. All Rights Reserved.	
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL	
# Websites: http://www.graphicaholic.com	
--------------------------------------------------------------------------------*/	
// No direct access	
defined('_JEXEC') or die('Restricted access');
defined('DS') or define('DS', DIRECTORY_SEPARATOR);
JHtml::_('bootstrap.framework');
// Import the file / foldersystem
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
$LiveSite 	= JURI::base();
$document	= JFactory::getDocument();	
$modbase	= JURI::base(true).'/modules/mod_weatheraholic/';	
$document->addScript ($modbase.'js/jquery.flatWeatherPlugin.min.js');	
$document->addStyleSheet($modbase.'css/flatWeatherPlugin.css');	
$moduleID	= $module->id;	
$choosebackgroundEffect = $params->get('choosebackgroundEffect');	
$weatheraholicShadowEffext = $params->get('weatheraholicShadowEffext');	
$weatheraholicFont = $params->get('weatheraholicFont');	
$weatheraholicColor = $params->get('weatheraholicColor');	
$weatheraholicDesc = $params->get('weatheraholicDesc');	
$displayLocation = $params->get('displayLocation');	
$weatheraholicAutoRefresh = $params->get('weatheraholicAutoRefresh');	
$weatheraholicAPI = $params->get('weatheraholicAPI');	
$weatheraholicPretext = $params->get('weatheraholicPretext');	
$weatheraholicPosttext = $params->get('weatheraholicPosttext');	
require JModuleHelper::getLayoutPath('mod_weatheraholic','default',$params);	
?>