Файл: my.net.ru/modules/games/index.php
Строк: 31
<?php
html::title('Онлайн игры');
acms_header();
if (config('PRIVATE_GAMES') == 0){
error('Модуль отключен администратором');
redirect('/');
}
if (get('get') == 'new') {
$root = 'new';
$h_v = null;
$h_r = null;
$h_g = 'h';
}elseif (get('get') == 'rating') {
$root = 'rating';
$h_v = null;
$h_r = 'h';
$h_g = null;
}else{
$root = 'all';
$h_v = 'h';
$h_r = null;
$h_g = null;
}
?>
<div class='menu-nav-content'>
<a class='menu-nav <?=$h_v?>' href='/m/games/?'>
<?=lg('Все')?>
</a>
<a class='menu-nav <?=$h_r?>' href='/m/games/?get=rating'>
<?=lg('ТОП')?>
</a>
<a class='menu-nav <?=$h_g?>' href='/m/games/?get=new'>
<?=lg('Новые')?>
</a>
<?php if (user('ID') > 0) { ?>
<a class='menu-nav' href='/m/games/users/?id=<?=user('ID')?>'>
<?=lg('Мои')?>
</a>
<?php } ?>
</div>
<?
if (MANAGEMENT == 1){
?>
<div class='list'>
<?=lg('Вы можете добавлять/удалять игры через')?> <a ajax='no' href='/admin/system/alpha_installer/'><?=lg('Альфа установщик')?></a>.
</div>
<?
}
require_once (ROOT.'/modules/games/plugins/'.$root.'.php');
back('/', 'На главную');
acms_footer();