| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/blog/components/com_kunena/template/crypsisb3/layouts/statistics/general/ |
Upload File : |
<?php
/**
* Kunena Component
* @package Kunena.Template.Crypsis
* @subpackage Layout.Statistics
*
* @copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license https://www.gnu.org/copyleft/gpl.html GNU/GPL
* @link https://www.kunena.org
**/
defined('_JEXEC') or die;
?>
<div class="statistics">
<h1>
<?php echo JText::_('COM_KUNENA_STATISTICS');?>
</h1>
<?php foreach ($this->top as $top) : ?>
<h3>
<?php echo $top[0]->title; ?>
</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th class="col-md-1 center">#</th>
<th class="col-md-5"><?php echo $top[0]->titleName; ?></th>
<th class="col-md-6"><?php echo $top[0]->titleCount; ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($top as $id => $item) : ?>
<tr>
<td class="center">
<?php echo $id + 1; ?>
</td>
<td>
<?php echo $item->link; ?>
</td>
<td>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: <?php echo $item->percent; ?>%;"><?php echo $item->count; ?></div>
</div>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endforeach; ?>
<?php if ($this->config->showgenstats) : ?>
<h3>
<?php echo JText::_('COM_KUNENA_STATISTICS'); ?>
</h3>
<div class="well well-small">
<?php echo JText::_('COM_KUNENA_STAT_TOTAL_USERS'); ?>:
<b>
<?php if ($this->userlistUrl) : ?>
<a href="<?php echo $this->userlistUrl; ?>"><?php echo $this->memberCount; ?></a>
<?php else : ?>
<?php echo $this->memberCount; ?>
<?php endif; ?>
</b>
<?php echo JText::_('COM_KUNENA_STAT_LATEST_MEMBERS'); ?>:
<b><?php echo $this->latestMemberLink ?></b>
<br/>
<?php echo JText::_('COM_KUNENA_STAT_TOTAL_MESSAGES'); ?>:
<b><?php echo (int) $this->messageCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_TOTAL_SUBJECTS'); ?>:
<b><?php echo (int) $this->topicCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_TOTAL_SECTIONS'); ?>:
<b><?php echo (int) $this->sectionCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_TOTAL_CATEGORIES'); ?>:
<b><?php echo (int) $this->categoryCount; ?></b>
<br/>
<?php echo JText::_('COM_KUNENA_STAT_TODAY_OPEN_THREAD'); ?>:
<b><?php echo (int) $this->todayTopicCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_YESTERDAY_OPEN_THREAD'); ?>:
<b><?php echo (int) $this->yesterdayTopicCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_TODAY_TOTAL_ANSWER'); ?>:
<b><?php echo (int) $this->todayReplyCount; ?></b>
<?php echo JText::_('COM_KUNENA_STAT_YESTERDAY_TOTAL_ANSWER'); ?>:
<b><?php echo (int) $this->yesterdayReplyCount; ?></b>
</div>
<?php endif; ?>
</div>