| Current Path : /home/digilove/public_html/administrator/modules/mod_unread/ |
| Current File : /home/digilove/public_html/administrator/modules/mod_unread/mod_unread.php |
<?php
/**
* @version $Id: mod_unread.php 20196 2011-01-09 02:40:25Z ian $
* @package Joomla.Administrator
* @subpackage mod_unread
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
// Include dependancies.
require_once dirname(__FILE__).'/helper.php';
$unread = ModUnreadHelper::getCount();
if ($unread !== false) {
// Set the inbox link.
$inboxLink = JRequest::getInt('hidemainmenu') ? null : JRoute::_('index.php?option=com_messages');
require JModuleHelper::getLayoutPath('mod_unread', $params->get('layout', 'default'));
}