Constructor
| Description
|
cgi
| This is an alias for the request variable scope.
|
config
| This variable scope contains the configuration preferences for the site.
A list of all configuration preferences can be found in section XYZ: Site configuration preferences.
|
cookie
| This variable scope contains the variables of the PHP $_COOKIE array. |
env
| This variable scope contains the variables of the PHP $_ENV array.
For further information on the variables contained in the $_ENV array see the PHP manual on the subject.
|
get
| This variable scope contains the variables of the PHP $_GET array. Usually the variables passed in the request URL.
|
global
| Global variables in PHP.
NOTE! This variable scope should not be used for users' own variables. Instead use variable scope var for that purpose.
|
post
| This variable scope contains the variables of the PHP $_POST array. Usually the variables passed in the request from an HTML form. |
private
| The private variable scope is private to one component runtime instance. This means that a variable in the private scope exists only in the component runtime instance where it was set. The variable is not visible and cannot be accesses from outside that component runtime instance.
|
request
| This variable scope contains all the variables originating from the PHP
$_POST, $_GET and $_COOKIE arrays, that is all URL parameters, variables
posted in forms and variables stored in cookies. |
server
| This variable scope contains the variables of the PHP $_SERVER array.
For further information on the variables contained in the $_SERVER array see the PHP manual on the subject.
|
session | This variable scope contains all the variables of the current session.
A full list of all the session variables can be found in section XYZ: Session variables.
|
system
| System variables like the HammerKit, PHP and database versions, system time and so on. A complete list of the system variables can be found here.
|
var
| A variable scope for users' own variables. This variable scope is empty by default.
|