| Current Path : /home/juvelize/www/modules/mod_thick_rss/ |
| Current File : /home/juvelize/www/modules/mod_thick_rss/mod_thick_rss.php |
<?php
/**
* @file mod_thick_rss.php 2013-07-07 16:17:09 +0200
* @package mod_thick_rss
* @author Horst Lindlbauer info@lbm-services.de
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @ $version: 3.4$
* @credit: Boris Popoff (smoothbox), Ryan Parman, Geoffrey Sneddon (SimplePie), Codey Lindley (Thickbox), David Thomas (Slick RSS)
* @description: Joomla module to show list of RSS feeds and link to news in modal window
**/
// no direct access
DEFINE('DS', DIRECTORY_SEPARATOR);
defined('_JEXEC') or die('Restricted access');
// Include the helper functions only once
require_once (dirname(__FILE__).DS.'helper.php');
// load Headerscripts
$style = $params->get( 'design', 'default' );
$instance= modThickRSSHelper::setHeader($style);
// Get data from helper class
$rss_content = modThickRSSHelper::getFeed($params);
// Run default template script for output
require(JModuleHelper::getLayoutPath('mod_thick_rss'));