Documentation
IPS_GetEventList
array IPS_GetEventList ()
Returns
An array of integer values of all IDs of the events in IP Symcon
Description
The command determines the IDs of all registered events in IP Symcon. The IDs are listed in an array. If no event exists, the array is empty.
Example
$allEvents = IPS_GetEventList();
print_r($allEvents);
/* returns e.g.:
Array
(
[0] => 37659
[1] => 18326
etc. ...
)
*/