Файл: plugins/index.php
Строк: 19
<?php
/**
* Подключаем шапку
*/
$title = $set['title'];
require_once (SYS.'head.php');
/**
* Массив с ссылками
*/
$listing[] = [
'title' => 'Пользователи',
'url' => '/page/users.list.php',
'div' => 'menu',
'icon' => 'users',
'count' => core::count('users')
];
$listing[] = [
'title' => 'Сейчас на сайте',
'url' => '/page/users.online.php',
'div' => 'menu',
'icon' => 'user',
'count' => core::count('users', 'time_last', '> '.TIME.'-600')
];
/**
* Вывод ссылок
*/
$smarty->assign('listing', $listing);
$smarty->display('listing.tpl');
/**
* Подключаем ноги
*/
require_once (SYS.'foot.php');