Файл: Arhmobi_esdcms/sys/widgets/games/index.php
Строк: 13
<?php
defined('DCMS') or die;
$listing = new listing();
$post = $listing->post();
$post->highlight = true;
$post->icon('game');
$post->url = '/games/';
$post->counter = 2;
$post->title = __('Игровой раздел');
$db=DB::me();
$resp = $db->query("SELECT COUNT(*) FROM `users_online` WHERE `request` LIKE '/games/%'");
$users = $resp->fetchColumn();
if ($users)
$post->bottom = __('%s ' . misc::number($users, 'человек', 'человека', 'человек'), $users);
$listing->display();