?
Path : /home/admin/public_html/old/administrator/modules/mod_status/tmpl/ |
Current File : /home/admin/public_html/old/administrator/modules/mod_status/tmpl/default.php |
<?php /** * @package Joomla.Administrator * @subpackage mod_status * * @copyright Copyright (C) 2005 - 2015 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">' . '<span class="icon-out-2"></span> ' . 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) . '">' . ($hideLinks ? '' : '<a href="' . $inboxLink . '">') . '<span class="icon-envelope"></span> ' . '<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 . '">') . '<span class="icon-minus-2"></span> ' . JText::_('JLOGOUT') . ($hideLinks ? '' : '</a>') . '</div>'; } // Output the items. foreach ($output as $item) { echo $item; }