очень долго. Что не так?
$childs = $modx->getChildIds(9057, 2, array('context' => 'web'));
$id_country_par = $id_country; //переданный параметр в сниппет присваем переменной
$output='';
foreach ($childs as $res) {
$childObj = $modx->getObject('modResource',$res);
$newres = $childObj->toArray(); // обьект child
$pagetitle = $childObj->get('pagetitle');
$id_country = $childObj->getTVValue('id_country');
if($id_country == $id_country_par){
print $pagetitle . '-' . $id_country. '<br>';
}
}
раз так много и долго, то 1. или писать полностью свой сниппет вызова 2. или переписать именно subMenu на чистом SQL т.е. через $modx->query();
Обсуждают сегодня