Difference between revisions of "NXSL:GetConfigurationVariable"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Get value of server's configuration variable. Function returns value of requested variable or specified default value if given variable is not set. '''Since:''' 1.2...") |
(No difference)
|
Revision as of 06:00, 19 July 2012
Get value of server's configuration variable. Function returns value of requested variable or specified default value if given variable is not set.
Since: 1.2.2
Syntax
GetConfigurationVariable(variableName, [defaultValue])
Parameters
variableName | Server's configuration variable name. |
defaultValue | Default value to be returned if given variable is not set. If omited, NULL will be used as default value. |
Return Value
Value of requested variable or specified default value if given variable is not set.
Examples
GetConfigurationVariable("NumberOfStatusPollers") -> "10" GetConfigurationVariable("BadVariable") -> NULL GetConfigurationVariable("BadVariable", 22) -> "22"