Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikhaildegtuarev/b17f484c375acd963d1f394ce19cbabc to your computer and use it in GitHub Desktop.
Save mikhaildegtuarev/b17f484c375acd963d1f394ce19cbabc to your computer and use it in GitHub Desktop.
<?php
$count = 0;
$parent = isset($parent) ? (integer) $parent : 0;
if ($parent > 0) {
$criteria = array(
'parent' => $parent,
'deleted' => false,
'published' => true,
);
$count = $modx->getCount('modResource', $criteria);
}
return (string) $count;
[[getItemsCount? &parent=`[[+id]]`]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment