Файл: public/main.php
Строк: 16
<?php
# Author: Oleg Kulaga (Cyber_Shot);
# Package: WGame Engine;
# Version: 0.1;
define("APP", true);
# Connect config;
require_once ('../app/config.php');
# Check user auth;
user_auth(1);
$module = 'main';
view_header(app_getConfig($module, 'title'));
if (app_getConfig($module, 'close') == 1)
{
?>
<div class="block" style="text-align: center;">
Данный модуль закрыт администратором.
</div>
<?php
}
else
{
?>
<div class="block">
Вы находитесь на главной.
<a href="<?=DS.HOME.DS?>wgame.auth.exit" class="touchLink"> Выйти</a>
</div>
<?php
}
view_footer();