403Webshell
Server IP : 104.21.84.107  /  Your IP : 104.23.243.197
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/pregrados/tec-regencia-farmacia/libraries/vendor/joomla/session/src/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/pregrados/tec-regencia-farmacia/libraries/vendor/joomla/session/src/SessionState.php
<?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';
}

Youez - 2016 - github.com/yon3zu
LinuXploit