Файл: zo.php
Строк: 75
<?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.files.php";
class Page {
var $gen;
var $auth;
var $db;
var $files;
function __construct() {
global $gen;
global $auth;
global $db;
global $files;
$gen = new PageGenerator();
$db = new Database;
$auth = new Authorization;
$files = new Files;
}
function Render() {
global $gen;
global $auth;
global $db;
global $files;
if($_GET["razdel"] == "programs") {
$gen->CreateText("Зона обмена: Программы");
$res = $files->GetFilesByCategory($db, "programs");
if($res == 0) {
$gen->CreateText("Нет файлов!");
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
exit;
}
for($i = 1; $i < count($res) + 1; $i++) {
$gen->CreateLinkWithIcon("cloud-download", $res[$i]["name"], "files.php?fileid=" . $res[$i]["id"]);
}
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
}
if($_GET["razdel"] == "music") {
$gen->CreateText("Зона обмена: Музыка");
$res = $files->GetFilesByCategory($db, "music");
if($res == 0) {
$gen->CreateText("Нет файлов!");
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
exit;
}
for($i = 1; $i < count($res) + 1; $i++) {
$gen->CreateLinkWithIcon("cloud-download", $res[$i]["name"], "files.php?fileid=" . $res[$i]["id"]);
}
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
}
if($_GET["razdel"] == "photo") {
$gen->CreateText("Зона обмена: Фото");
$res = $files->GetFilesByCategory($db, "pictures");
if($res == 0) {
$gen->CreateText("Нет файлов!");
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
exit;
}
for($i = 1; $i < count($res) + 1; $i++) {
$gen->CreateLinkWithIcon("cloud-download", $res[$i]["name"], "files.php?fileid=" . $res[$i]["id"]);
}
$gen->CreateLinkWithIcon("home", "Домой", "index.php");
}
}
}
$index = new Page;
$index->Render();
?>