array IPS_GetChildrenIDs (int $ObjectID)
ObjectID | ID of the object |
An array of integer values that contains the IDs of all child objects
This function determines the IDs of all child objects of the object with the ID ObjectID. The IDs of the children are listed in an array.
print_r(IPS_GetChildrenIDs(32102));
/* returns, e.g.,:
Array
(
[0] => 11650
[1] => 25578
[2] => 30202
etc. ...
)
*/