ZenphotoCMS 1.6.x

elFinderSessionInterface

elFinder - file manager for web.

Session Wrapper Interface.

Tags
author

Naoki Sawada

Table of Contents

close()  : self
Session write & close
get()  : mixed
Get session data This method must be equipped with an automatic start / close.
remove()  : self
Get session data
set()  : self
Set session data This method must be equipped with an automatic start / close.
start()  : self
Session start

Methods

get()

Get session data This method must be equipped with an automatic start / close.

public get(string $key[, mixed $empty = '' ]) : mixed
Parameters
$key : string

Target key

$empty : mixed = ''

Return value of if session target key does not exist

Return values
mixed

remove()

Get session data

public remove(string $key) : self
Parameters
$key : string

Target key

Return values
self

set()

Set session data This method must be equipped with an automatic start / close.

public set(string $key, mixed $data) : self
Parameters
$key : string

Target key

$data : mixed

Value

Return values
self

Search results