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