forked from fa/breadcrumb-the-shire
12 lines
249 B
PHP
12 lines
249 B
PHP
<?php
|
|
|
|
/**
|
|
* Resolve the profile target for the current session user.
|
|
*/
|
|
function accountUrl(): string
|
|
{
|
|
$user = $_SESSION['user'] ?? [];
|
|
$uuid = (string) ($user['uuid'] ?? '');
|
|
return $uuid !== '' ? lurl('profile') : lurl('login');
|
|
}
|