__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Part of the Joomla Framework Session Package
*
* @copyright Copyright (C) 2005 - 2021 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
namespace Joomla\Session;
/**
* Class defining the various states of a session
*
* @since 2.0.0
*/
final class SessionState
{
/**
* Private constructor to prevent instantiation of this class
*
* @since 2.0.0
*/
private function __construct()
{
}
/**
* State indicating the session is active.
*
* A `SessionInterface` instance should be in this state once the session has started.
*
* @var string
* @since 2.0.0
*/
public const ACTIVE = 'active';
/**
* State indicating the session is closed.
*
* A `SessionInterface` instance should be in this state after calling the `close()` method.
*
* @var string
* @since 2.0.0
*/
public const CLOSED = 'closed';
/**
* State indicating the session is destroyed.
*
* A `SessionInterface` instance should be in this state after calling the `destroy()` method.
*
* @var string
* @since 2.0.0
*/
public const DESTROYED = 'destroyed';
/**
* State indicating the session is in an error state.
*
* A `SessionInterface` instance should be in this state if the session cannot be validated after being started.
*
* @var string
* @since 2.0.0
*/
public const ERROR = 'error';
/**
* State indicating the session is expired.
*
* A `SessionInterface` instance should be in this state if the session has passed the allowed lifetime.
* A `SessionInterface` instance may be in this state if validating a session token fails.
*
* @var string
* @since 2.0.0
*/
public const EXPIRED = 'expired';
/**
* State indicating the session is inactive.
*
* A `SessionInterface` instance should begin in this state.
*
* @var string
* @since 2.0.0
*/
public const INACTIVE = 'inactive';
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Command | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| Handler | Folder | 0775 |
|
|
| Storage | Folder | 0775 |
|
|
| Validator | Folder | 0775 |
|
|
| HandlerInterface.php | File | 586 B | 0664 |
|
| Session.php | File | 15.1 KB | 0664 |
|
| SessionEvent.php | File | 1.03 KB | 0664 |
|
| SessionEvents.php | File | 1002 B | 0664 |
|
| SessionInterface.php | File | 5.32 KB | 0664 |
|
| SessionState.php | File | 1.93 KB | 0664 |
|
| StorageInterface.php | File | 3.6 KB | 0664 |
|
| ValidatorInterface.php | File | 626 B | 0664 |
|