S2OJ/web/app/controllers/ranklist.php

46 lines
902 B
PHP
Raw Normal View History

2016-07-18 16:39:37 +00:00
<?php
requireLib('bootstrap5');
if (!Auth::check() && UOJConfig::$data['switch']['force-login']) {
redirectToLogin();
2022-03-17 04:00:03 +00:00
}
if (!isNormalUser($myUser) && UOJConfig::$data['switch']['force-login']) {
2022-04-03 10:18:17 +00:00
become403Page();
}
$config = [
'page_len' => 50,
'div_classes' => ['card', 'mb-3'],
'table_classes' => ['table', 'uoj-table', 'mb-0', 'text-center'],
];
2022-03-21 02:51:31 +00:00
if (isset($_GET['type']) && $_GET['type'] == 'accepted') {
$config['by_accepted'] = true;
2022-03-21 02:51:31 +00:00
$title = UOJLocale::get('top solver');
} else {
become404Page();
}
2022-09-18 04:58:35 +00:00
?>
2022-03-21 02:51:31 +00:00
<?php echoUOJPageHeader($title) ?>
<div class="row">
<!-- left col -->
<div class="col-lg-9">
2022-09-24 03:55:34 +00:00
<h1 class="h2"><?= $title ?></h1>
2016-07-18 16:39:37 +00:00
<?php echoRanklist($config) ?>
</div>
<!-- end left col -->
<!-- right col -->
<aside class="col-lg-3 mt-3 mt-lg-0">
<?php uojIncludeView('sidebar', array()) ?>
</aside>
<!-- end right col -->
</div>
2016-07-18 16:39:37 +00:00
<?php echoUOJPageFooter() ?>