Skip to content

Instantly share code, notes, and snippets.

@Sentinel-7
Created August 5, 2020 10:26
Show Gist options
  • Save Sentinel-7/00905ec73c31c28d254ec2b908e182aa to your computer and use it in GitHub Desktop.
Save Sentinel-7/00905ec73c31c28d254ec2b908e182aa to your computer and use it in GitHub Desktop.
Получаем уровень вложенности
<?php
$parentPageId = $modx->resource->get('id');
$level = count($modx->getParentIds($parentPageId));
echo $level;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment