Data
10 posts tagged with "Data"
app-data
The app-data action stub action for all server app data ACTIONS. It belongs to the data category within the data area.
Action Syntax
app-data $variable
Return Value
This function returns a
$result = app-data
Valid sizes
Examples
// Basic Usage
$response = app-data $varname
csv
The csv action defines a block of static csv data. It belongs to the data category within the data area.
Action Syntax
csv
This action takes no parameters and is used as a bare command.
Examples
// Basic Usage
csv
delete-app-data
The delete-app-data action delete app data (private). It belongs to the data category within the data area.
Action Syntax
delete-app-data $variable
Return Value
This function returns a
$result = delete-app-data
Valid sizes
Examples
// Basic Usage
$response = delete-app-data $varname
delete-public-app-data
The delete-public-app-data action delete app data (public). It belongs to the data category within the data area.
Action Syntax
delete-public-app-data $variable
Return Value
This function returns a
$result = delete-public-app-data
Valid sizes
Examples
// Basic Usage
$response = delete-public-app-data $varname
list-app-data
The list-app-data action list app data (private). It belongs to the data category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-app-data
Valid sizes
Examples
// Basic Usage
list-app-data
list-public-app-data
The list-public-app-data action list app data (public). It belongs to the data category within the data area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Return Value
This function returns a
$result = list-public-app-data
Valid sizes
Examples
// Basic Usage
list-public-app-data
load-app-data
The load-app-data action loads app data (private). It belongs to the data category within the data area.
Action Syntax
load-app-data $variable
Return Value
This function returns a
$result = load-app-data
Valid sizes
Examples
// Basic Usage
$varrec = load-app-data $varname
load-public-app-data
The load-public-app-data action loads app data (public). It belongs to the data category within the data area.
Action Syntax
load-public-app-data $variable
Return Value
This function returns a
$result = load-public-app-data
Valid sizes
Examples
// Basic Usage
$varrec = load-public-app-data $varname
save-app-data
The save-app-data action saves app data (private). It belongs to the data category within the data area.
Action Syntax
save-app-data $variable
save-app-data $variable as $variable
Return Value
This function returns a
$result = save-app-data
Valid sizes
Examples
// Basic Usage
$response = save-app-data $varname
save-public-app-data
The save-public-app-data action saves app data (public). It belongs to the data category within the data area.
Action Syntax
save-public-app-data $variable
save-public-app-data $variable as $variable
Return Value
This function returns a
$result = save-public-app-data
Valid sizes
Examples
// Basic Usage
$response = save-public-app-data $varname