| Current Path : /var/www/iplanru/data/www/i-plan.ru/administrator/modules/mod_status/tmpl/ |
| Current File : /var/www/iplanru/data/www/i-plan.ru/administrator/modules/mod_status/tmpl/default.php |
<?php
/**
* @package Joomla.Administrator
* @subpackage mod_status
*
* @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
$hideLinks = $input->getBool('hidemainmenu');
$task = $input->getCmd('task');
$output = array();
// Print the Preview link to Main site.
if ($params->get('show_viewsite', 1))
{
$output[] = '<div class="btn-group viewsite">'
. '<a href="' . JUri::root() . '" target="_blank">'
. '<i class="icon-share-alt"></i> ' . JText::_('JGLOBAL_VIEW_SITE')
. '</a>'
. '</div>'
. '<div class="btn-group divider"></div>';
}
// Print the frontend logged in users.
if ($params->get('show_loggedin_users', 1))
{
$output[] = '<div class="btn-group loggedin-users">'
. '<span class="badge">' . $online_num . '</span> '
. JText::plural('MOD_STATUS_USERS', $online_num)
. '</div>';
}
// Print the back-end logged in users.
if ($params->get('show_loggedin_users_admin', 1))
{
$output[] = '<div class="btn-group backloggedin-users">'
. '<span class="badge">' . $count . '</span> '
. JText::plural('MOD_STATUS_BACKEND_USERS', $count)
. '</div>';
}
// Print the inbox message.
if ($params->get('show_messages', 1))
{
$active = $unread ? ' badge-warning' : '';
$output[] = '<div class="btn-group hasTooltip ' . $inboxClass . '"'
. ' title="' . JText::plural('MOD_STATUS_MESSAGES', $unread) . '"'
. ' alt="' . JText::plural('MOD_STATUS_MESSAGES', $unread) . '">'
. ($hideLinks ? '' : '<a href="' . $inboxLink . '">')
. '<i class="icon-envelope"></i> '
. '<span class="badge' . $active . '">' . $unread . '</span>'
. ($hideLinks ? '' : '</a>')
. '<div class="btn-group divider"></div>'
. '</div>';
}
// Print the logout link.
if ($task == 'edit' || $task == 'editA' || $input->getInt('hidemainmenu'))
{
$logoutLink = '';
}
else
{
$logoutLink = JRoute::_('index.php?option=com_login&task=logout&' . JSession::getFormToken() . '=1');
}
if ($params->get('show_logout', 1))
{
$output[] = '<div class="btn-group logout">'
. ($hideLinks ? '' : '<a href="' . $logoutLink . '">')
. '<i class="icon-minus-2"></i> ' . JText::_('JLOGOUT')
. ($hideLinks ? '' : '</a>')
. '</div>';
}
// Output the items.
foreach ($output as $item)
{
echo $item;
}