![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/barryvdh/elfinder-flysystem-driver/src/Cache/ |
<?php namespace Barryvdh\elFinderFlysystemDriver\Cache; use elFinderSessionInterface; use League\Flysystem\Cached\Storage\AbstractCache; class SessionStore extends AbstractCache { /** * @var elFinderSessionInterface The elFinder session */ protected $session; /** * @var string storage key */ protected $key; public function __construct(elFinderSessionInterface $session, $key) { $this->session = $session; $this->key = $key; } /** * Load the cache. */ public function load() { $json = $this->session->get($this->key, null); if ($json !== null) { $this->setFromStorage($json); } } /** * Store the cache. */ public function save() { $value = $this->getForStorage(); $this->session->set($this->key, $value); } }