modX.getChildIds
Last updated Dec 21st, 2019 | Page history | Improve this page | Report an issue
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$311 per month—let's make that $500!
Learn moremodX::getChildIds¶
Gets all of the child resource ids for a given resource.
Syntax¶
API Doc: modX::getChildIds()
array getChildIds ([integer $id = null], [integer $depth = 10], [array $options = array()])
Example¶
Get all the children IDs for the Resource 23. Limit to 6 levels deep. Only in the web context.
$array_ids = $modx->getChildIds(23,6,array('context' => 'web'));
Note that when using this method in the manager (to collect input options for a TV for example), you need to define the context with the third options
parameter as it defaults to the current context (in that scenario the manager).