2018-03-14 01:39:02 +00:00
|
|
|
<?php
|
|
|
|
use Misuzu\Users\User;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/../misuzu.php';
|
|
|
|
|
2018-03-22 17:56:35 +00:00
|
|
|
$user_id = (int)($_GET['u'] ?? 0);
|
|
|
|
|
|
|
|
try {
|
|
|
|
$app->templating->vars(['profile' => User::findOrFail($user_id)]);
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
http_response_code(404);
|
|
|
|
echo $app->templating->render('user.notfound');
|
|
|
|
return;
|
|
|
|
}
|
2018-03-14 01:39:02 +00:00
|
|
|
|
|
|
|
echo $app->templating->render('user.view');
|