Documentation
IPS_GetVariableList
array IPS_GetVariableList ()
Returns
A list of all IDs of the variables
Description
This function determines the IDs of all registered IPS variables in IP Symcon. The IDs are listed in an array. If no variable exists, the array is empty.
Example
$allVariables = IPS_GetVariableList();
print_r($allVariables);
/* returns, e.g.:
Array
(
[0] => 37659
[1] => 18326
etc. ...
*/