| 12345678910111213141516171819202122232425262728 |
- <?php
- declare(strict_types=1);
- /**
- * The Minz_User class handles the user information.
- */
- final class Minz_User {
- public const INTERNAL_USER = '_';
- public const CURRENT_USER = 'currentUser';
- /**
- * @return string the name of the current user, or null if there is none
- */
- public static function name(): ?string {
- $currentUser = trim(Minz_Session::paramString(Minz_User::CURRENT_USER));
- return $currentUser === '' ? null : $currentUser;
- }
- /**
- * @param string $name the name of the new user. Set to empty string to clear the user.
- */
- public static function change(string $name = ''): void {
- $name = trim($name);
- Minz_Session::_param(Minz_User::CURRENT_USER, $name === '' ? false : $name);
- }
- }
|