Your IP : 10.10.0.253


Current Path : /var/www/modules/mod_jcomments_most_commented/
Upload File :
Current File : /var/www/modules/mod_jcomments_most_commented/mod_jcomments_most_commented.php

<?php
/**
 * JComments Most Commented - Shows most commented items
 *
 * @version 1.4
 * @package JComments
 * @author smart (smart@joomlatune.ru)
 * @copyright (C) 2006-2012 by smart (http://www.joomlatune.ru)
 * @license GNU General Public License version 2 or later; see license.txt
 *
 **/
 
// no direct access
defined('_JEXEC') or die;

$comments = JPATH_SITE . '/components/com_jcomments/jcomments.php';
if (file_exists($comments)) {
	require_once ($comments);
} else {
	return;
}

require_once (dirname(__FILE__).'/helper.php');

if ($params->get('useCSS') && !defined ('_JCOMMENTS_MOST_COMMENTED_CSS')) {
	define ('_JCOMMENTS_MOST_COMMENTED_CSS', 1);

	$app = JFactory::getApplication('site');

	$style = 'style.css';
	$css = 'media/' . $module->module . '/css/' . $style;

	if (is_file(JPATH_SITE . '/templates/' . $app->getTemplate() . '/html/' . $module->module . '/css/' . $style)) {
		$css = 'templates/' . $app->getTemplate() . '/html/' . $module->module . '/css/' . $style;
	}

	$document = JFactory::getDocument();
	$document->addStylesheet($css);
}

$list = modJCommentsMostCommentedHelper::getList($params);

if (!empty($list)) {
	require (JModuleHelper::getLayoutPath('mod_jcomments_most_commented', $params->get('layout', 'default')));
}