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/security/classes/general/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage security * @copyright 2001-2013 Bitrix */ /** * Class CSecuritySessionVirtual * @deprecated * @see \Bitrix\Main\Session\Handlers\NullSessionHandler */ class CSecuritySessionVirtual { /** * @return bool */ public static function isStorageEnabled() { return defined("BX_SECURITY_SESSION_VIRTUAL") && BX_SECURITY_SESSION_VIRTUAL == true; } /** * @return bool */ public static function Init() { return true; } /** * @param string $savePath - unused on this handler * @param string $sessionName - unused on this handler * @return bool */ public static function open($savePath, $sessionName) { return true; } public static function close() { return true; } /** * @param string $id - session id, must be valid hash * @return string */ public static function read($id) { return ""; } /** * @param string $id - session id, must be valid hash * @param array $sessionData * @return bool */ public static function write($id, $sessionData) { return true; } /** * @param string $id - session id, must be valid hash * @return bool */ public static function destroy($id) { return true; } /** * @param int $maxLifeTime - unused on this handler */ public static function gc($maxLifeTime) { } }