2024-04-11 22:01:36 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class Key {
|
|
|
|
|
|
2024-04-15 23:25:58 -04:00
|
|
|
/** @var string The $_SESSION key for the current user's e-mail address */
|
2024-04-11 22:01:36 -04:00
|
|
|
public const string USER_EMAIL = 'FRC_USER_EMAIL';
|
|
|
|
|
|
2024-04-15 23:25:58 -04:00
|
|
|
/** @var string The $_SESSION key for the current user's ID */
|
2024-04-11 22:01:36 -04:00
|
|
|
public const string USER_ID = 'FRC_USER_ID';
|
|
|
|
|
|
|
|
|
|
/** @var string The $_REQUEST key for the array of user messages to display */
|
|
|
|
|
public const string USER_MSG = 'FRC_USER_MSG';
|
|
|
|
|
}
|