Documentation
IPS_GetLinkList
Require: IP-Symcon >= 2.1
array IPS_GetLinkList ()
Returns
An array of all IDs of links in IP-Symcon presented as integer.
Description
The command determines the IDs of all available links in IP-Symcon. The IDs are listed in an array. If no link exists, the array is empty.
Example
$allLinks = IPS_GetLinkList();
print_r($allLinks);
/* returns e.g.:
Array
(
[0] => 0
[1] => 37659
[2] => 18326
etc. ...
)
*/