Localstorage
6 posts tagged with "Localstorage"
delete
The delete action deletes previously saved value. It belongs to the localstorage category within the storage area.
Action Syntax
delete $variable
Valid sizes
Examples
// Basic Usage
delete $varname
delete-saved
The delete-saved action deletes all previously saved variables. It belongs to the localstorage category within the storage area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = delete-saved
Valid sizes
Examples
// Basic Usage
delete-saved
list-saved
The list-saved action lists all previously saves variables. It belongs to the localstorage category within the storage area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-saved
Valid sizes
Examples
// Basic Usage
list-saved
load
The load action loads a saved variable on local device. It belongs to the localstorage category within the storage area.
Action Syntax
load $variable
load $variable into $variable
Valid sizes
Examples
// Basic Usage
load $varname
load-saved
The load-saved action loads all previously saves variables. It belongs to the localstorage category within the storage area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = load-saved
Valid sizes
Examples
// Basic Usage
load-saved
save
The save action saves a variable to local device. It belongs to the localstorage category within the storage area.
Action Syntax
save $variable
Valid sizes
Examples
// Basic Usage
save $varname