Файл: users.php
Строк: 48
<?php
session_start();
error_reporting(E_ALL^E_DEPRECATED);
include "sys/system.page.php";
include "sys/system.db.php";
include "sys/system.auth.php";
include "sys/system.users.php";
class Page {
var $gen;
var $auth;
var $db;
var $usr;
function __construct() {
global $gen;
global $auth;
global $db;
global $usr;
$gen = new PageGenerator();
$db = new Database;
$auth = new Authorization;
$usr = new Users;
}
function Render() {
global $gen;
global $auth;
global $db;
global $usr;
if($auth->GetUserRights($db) == "Парится в баньке") {
$gen->CreateText("<b style="color: red">У вас нет доступа к этой странице</b>");
$gen->CreateLinkWithIcon("close", "Выйти", "logout.php");
exit;
}
$gen->CreateText("Пользователей: " . $usr->GetUserCount($db));
$cnt = $usr->GetUserCount($db);
for($i = 1; $i < $cnt + 1; $i++) {
$info = $usr->GetUserInfo($db, $i);
$gen->CreateLinkWithIcon("user", $info["nick"], "profile.php?id=" . $info["id"]);
}
$gen->EndGenerating();
}
}
$index = new Page;
$index->Render();
?>