S2OJ/web/app/controllers/user_info.php

25 lines
591 B
PHP
Raw Normal View History

2016-07-19 00:39:37 +08:00
<?php
2022-10-20 06:33:49 +08:00
requireLib('bootstrap5');
requireLib('calendar_heatmap');
if (!Auth::check() && UOJConfig::$data['switch']['force-login']) {
redirectToLogin();
2022-03-17 12:00:03 +08:00
}
if (!isNormalUser($myUser) && UOJConfig::$data['switch']['force-login']) {
2022-04-03 18:18:17 +08:00
become403Page();
}
2016-07-19 00:39:37 +08:00
$username = $_GET['username'];
2022-03-25 13:16:37 +08:00
2022-09-28 15:39:39 +08:00
if (!validateUsername($username) || !($user = queryUser($username))) {
become404Page();
}
2022-09-18 12:58:35 +08:00
?>
2022-03-25 13:16:37 +08:00
2022-10-20 06:33:49 +08:00
<?php echoUOJPageHeader($user['username'] . ' - ' . UOJLocale::get('user profile')) ?>
2022-09-20 18:23:18 +08:00
2022-10-20 06:33:49 +08:00
<?php uojIncludeView('user-info', array('user' => $user, 'myUser' => $myUser)) ?>
2016-07-19 00:39:37 +08:00
<?php echoUOJPageFooter() ?>