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
|
class LoginManager
|
||||||
{
|
{
|
||||||
|
/** @var array A reference to the $_GLOBALS array */
|
||||||
protected $globals = [];
|
protected $globals = [];
|
||||||
|
|
||||||
|
/** @var ConfigManager Configuration Manager instance **/
|
||||||
protected $configManager = null;
|
protected $configManager = null;
|
||||||
|
|
||||||
|
/** @var SessionManager Session Manager instance **/
|
||||||
protected $sessionManager = null;
|
protected $sessionManager = null;
|
||||||
|
|
||||||
|
/** @var string Path to the file containing IP bans */
|
||||||
protected $banFile = '';
|
protected $banFile = '';
|
||||||
|
|
||||||
|
/** @var bool Whether the user is logged in **/
|
||||||
protected $isLoggedIn = false;
|
protected $isLoggedIn = false;
|
||||||
|
|
||||||
|
/** @var bool Whether the Shaarli instance is open to public edition **/
|
||||||
protected $openShaarli = false;
|
protected $openShaarli = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue