S2OJ/web/app/controllers/ranklist.php

28 lines
646 B
PHP
Raw Normal View History

2016-07-18 16:39:37 +00:00
<?php
2022-03-17 04:00:03 +00:00
if (!Auth::check()) {
redirectToLogin();
2022-03-17 04:00:03 +00:00
}
2022-04-03 10:18:17 +00:00
if (!isNormalUser($myUser)) {
become403Page();
}
2022-03-21 02:51:31 +00:00
if (isset($_GET['type']) && $_GET['type'] == 'accepted') {
$config = array('page_len' => 100, 'by_accepted' => true);
$title = UOJLocale::get('top solver');
} else {
become404Page();
}
2022-09-24 03:55:34 +00:00
if (!isset($_COOKIE['bootstrap4'])) {
$REQUIRE_LIB['bootstrap5'] = '';
$config['div_classes'] = array('card', 'mb-3');
$config['table_classes'] = array('table', 'uoj-table', 'mb-0', 'text-center');
}
2022-09-18 04:58:35 +00:00
?>
2022-03-21 02:51:31 +00:00
<?php echoUOJPageHeader($title) ?>
2022-09-24 03:55:34 +00:00
<h1 class="h2"><?= $title ?></h1>
2016-07-18 16:39:37 +00:00
<?php echoRanklist($config) ?>
<?php echoUOJPageFooter() ?>