1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
include "standalone.php"; // Получаем тип объектов $typesCollection = umiObjectTypesCollection::getInstance(); $objectTypeId = $typesCollection->getBaseType('catalog', 'object'); // Здесь id объекта // Получаем объекты $objects = umiObjectsCollection::getInstance(); /** * Все объекты * @var object */ $allObjects = $objects->getGuidedItems($objectTypeId); foreach ($allObjects as $key => $value) { $object = $objects->getObject($key); $percent = $object->getValue('sale_percent'); $dateStart = $object->getValue('sale_start'); $dateEnd = $object->getValue('sale_end'); $price = $object->getValue('price'); $priceOld = $object->getValue('old_price'); echo $key . " " . $percent . " " . $price . " " . $priceOld . " " . $dateStart . " " . $dateEnd . "<br>"; // Очищаем переменные unset($percent, $dateStart, $dateEnd, $price, $priceOld); } |