PluginProbe ʕ •ᴥ•ʔ
Advanced File Manager – Ultimate File Manager for WordPress And Document Library Solution / trunk
Advanced File Manager – Ultimate File Manager for WordPress And Document Library Solution vtrunk
trunk 4.1.5 4.1.6 5.0 5.2.13 5.2.14 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 5.3.6 5.4.0 5.4.1 5.4.10 5.4.11 5.4.12 5.4.2 5.4.3 5.4.4 5.4.5 5.4.6 5.4.7 5.4.8
file-manager-advanced / application / library / php / elFinderSessionInterface.php
file-manager-advanced / application / library / php Last commit date
.tmp 10 months ago editors 4 weeks ago libs 7 years ago plugins 3 years ago resources 7 years ago MySQLStorage.sql 1 year ago autoload.php 10 months ago connector.maximal.php-dist 1 year ago connector.minimal.php-dist 1 year ago elFinder.class.php 4 weeks ago elFinderConnector.class.php 4 weeks ago elFinderFlysystemGoogleDriveNetmount.php 5 years ago elFinderPlugin.php 7 years ago elFinderSession.php 4 years ago elFinderSessionInterface.php 7 years ago elFinderVolumeBox.class.php 5 years ago elFinderVolumeDriver.class.php 4 weeks ago elFinderVolumeDropbox.class.php 1 year ago elFinderVolumeDropbox2.class.php 4 weeks ago elFinderVolumeFTP.class.php 5 years ago elFinderVolumeGoogleDrive.class.php 5 years ago elFinderVolumeGroup.class.php 7 years ago elFinderVolumeLocalFileSystem.class.php 2 years ago elFinderVolumeMySQL.class.php 10 months ago elFinderVolumeOneDrive.class.php 4 weeks ago elFinderVolumeSFTPphpseclib.class.php 4 weeks ago elFinderVolumeTrash.class.php 7 years ago elFinderVolumeTrashMySQL.class.php 7 years ago mime.types 3 years ago
elFinderSessionInterface.php
58 lines
1 <?php
2
3 /**
4 * elFinder - file manager for web.
5 * Session Wrapper Interface.
6 *
7 * @package elfinder
8 * @author Naoki Sawada
9 **/
10
11 interface elFinderSessionInterface
12 {
13 /**
14 * Session start
15 *
16 * @return self
17 **/
18 public function start();
19
20 /**
21 * Session write & close
22 *
23 * @return self
24 **/
25 public function close();
26
27 /**
28 * Get session data
29 * This method must be equipped with an automatic start / close.
30 *
31 * @param string $key Target key
32 * @param mixed $empty Return value of if session target key does not exist
33 *
34 * @return mixed
35 **/
36 public function get($key, $empty = '');
37
38 /**
39 * Set session data
40 * This method must be equipped with an automatic start / close.
41 *
42 * @param string $key Target key
43 * @param mixed $data Value
44 *
45 * @return self
46 **/
47 public function set($key, $data);
48
49 /**
50 * Get session data
51 *
52 * @param string $key Target key
53 *
54 * @return self
55 **/
56 public function remove($key);
57 }
58