Размер файла: 1.78Kb
<?php
/**
* This file is part of JohnCMS Content Management System.
*
* @copyright JohnCMS Community
* @license https://opensource.org/licenses/GPL-3.0 GPL-3.0
* @link https://johncms.com JohnCMS Project
*/
/**
* @var $title
* @var $page_title
* @var $data
*/
$this->layout(
'system::layout/default',
[
'title' => $title,
'page_title' => $page_title,
]
);
$this->sectionReplace('sidebar-menu', $this->fetch('admin::sidebar-admin-menu', ['module_menu' => ['forum' => true]]));
?>
<h3><?= __('Statistic') ?></h3>
<ul>
<li><?= __('Categories') ?>: <?= $data['counters']['total_cat'] ?></li>
<li><?= __('Sections') ?>: <?= $data['counters']['total_sub'] ?></li>
<li><?= __('Topics') ?>: <?= $data['counters']['total_thm'] ?> / <span class="text-danger"><?= $data['counters']['total_thm_del'] ?></span></li>
<li><?= __('Messages') ?>: <?= $data['counters']['total_msg'] ?> / <span class="text-danger"><?= $data['counters']['total_msg_del'] ?></span></li>
<li><?= __('Files') ?>: <?= $data['counters']['total_files'] ?></li>
<li><?= __('Votes') ?>: <?= $data['counters']['total_votes'] ?></li>
</ul>
<h3><?= __('Settings') ?></h3>
<ul>
<?php if ($user->rights >= 9): ?>
<li><a href="?act=forum&mod=settings"><?= __('Settings') ?></a></li>
<?php endif; ?>
<li><a href="?act=forum&mod=cat"><b><?= __('Forum structure') ?></b></a></li>
<li><a href="?act=forum&mod=hposts"><?= __('Hidden posts') ?></a> (<?= $data['counters']['total_msg_del'] ?>)</li>
<li><a href="?act=forum&mod=htopics"><?= __('Hidden topics') ?></a> (<?= $data['counters']['total_thm_del'] ?>)</li>
</ul>
<div class="mt-2">
<a href="<?= $data['back_url'] ?>"><?= __('Back') ?></a>
</div>