Last active
March 27, 2017 08:20
-
-
Save antk25/34aba54bf3a3225e958f1f6014e2571a to your computer and use it in GitHub Desktop.
Узнать количество дочерних элементов у ресурса в MODx Revo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$output = array(); | |
$criteria = array( | |
'parent' => 10, //в данной строке число 10 нужно изменить на id родителя | |
'deleted' => false, | |
'published' => true, | |
); | |
echo $count = $modx->getCount('modResource', $criteria); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment