NXSL:GetConfigurationVariable

Revision as of 08:00, 19 July 2012 by Victor (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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"