foreach ($cnt['rows'] as $item) {
if ($item['id'] == $id) {
$count_value = $item['count'];
echo $count_value;
//return true;
}
}
} else {
echo "Ошибка при получении данных";
}
return false;
<?php $id = $modx->documentIdentifier; $cnt = 0; foreach (ci()->carts->getCart('products')->getItems() as $item) { if ($item['id'] == $id) { $cnt += $item['count']; } } return $cnt;
Обсуждают сегодня