Skip to content

Instantly share code, notes, and snippets.

@antk25
Last active March 27, 2017 08:20
Show Gist options
  • Save antk25/34aba54bf3a3225e958f1f6014e2571a to your computer and use it in GitHub Desktop.
Save antk25/34aba54bf3a3225e958f1f6014e2571a to your computer and use it in GitHub Desktop.
Узнать количество дочерних элементов у ресурса в MODx Revo
<?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