Document LoginManager properties
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
63ea23c2a6
commit
1b28c66cc7
1 changed files with 11 additions and 0 deletions
|
@ -6,11 +6,22 @@
|
|||
*/
|
||||
class LoginManager
|
||||
{
|
||||
/** @var array A reference to the $_GLOBALS array */
|
||||
protected $globals = [];
|
||||
|
||||
/** @var ConfigManager Configuration Manager instance **/
|
||||
protected $configManager = null;
|
||||
|
||||
/** @var SessionManager Session Manager instance **/
|
||||
protected $sessionManager = null;
|
||||
|
||||
/** @var string Path to the file containing IP bans */
|
||||
protected $banFile = '';
|
||||
|
||||
/** @var bool Whether the user is logged in **/
|
||||
protected $isLoggedIn = false;
|
||||
|
||||
/** @var bool Whether the Shaarli instance is open to public edition **/
|
||||
protected $openShaarli = false;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue