которая по ид товара возвращает его разделы и подразделы?
https://dev.1c-bitrix.ru/api_help/iblock/classes/ciblockelement/getelementgroups.php
Вас не смущает что в доке речь идет о группах?
Возвращает разделы к которым привязан элемент, вроде всё правильно
спасибо за подсказку, накатал такую функцию global $stackCacheManager; $ID = intval($ID); if (0 >= $ID) return false; $cacheTime = CATALOG_CACHE_DEFAULT_TIME; if (defined("CATALOG_CACHE_TIME")) $cacheTime = intval(CATALOG_CACHE_TIME); $arProductSections = array(); $dbElementSections = CIBlockElement::GetElementGroups($ID, false, array("ID", "ADDITIONAL_PROPERTY_ID")); while ($arElementSections = $dbElementSections->Fetch()) { if (0 < intval($arElementSections['ADDITIONAL_PROPERTY_ID'])) continue; $arSectionsTmp = array(); $strCacheKey = "p".$arElementSections["ID"]; $stackCacheManager->SetLength("catalog_group_parents", 50); $stackCacheManager->SetTTL("catalog_group_parents", $cacheTime); if ($stackCacheManager->Exist("catalog_group_parents", $strCacheKey)) { $arSectionsTmp = $stackCacheManager->Get("catalog_group_parents", $strCacheKey); } else { $dbSection = CIBlockSection::GetList( array(), array('ID' => $arElementSections["ID"]), false, $arSelect = array( 'ID', 'IBLOCK_ID', 'LEFT_MARGIN', 'RIGHT_MARGIN', ) ); if ($arSection = $dbSection->Fetch()) { $dbSectionTree = CIBlockSection::GetList( array("LEFT_MARGIN" => "DESC"), array( "IBLOCK_ID" => $arSection["IBLOCK_ID"], "ACTIVE" => "Y", "GLOBAL_ACTIVE" => "Y", "IBLOCK_ACTIVE" => "Y", "<=LEFT_BORDER" => $arSection["LEFT_MARGIN"], ">=RIGHT_BORDER" => $arSection["RIGHT_MARGIN"] ) ); while ($arSectionTree = $dbSectionTree->Fetch()) { if (!in_array($arSectionTree["ID"], $arProductSections)) $arSectionsTmp[] = $arSectionTree["NAME"]; } } $stackCacheManager->Set("catalog_group_parents", $strCacheKey, $arSectionsTmp); } $arProductSections = array_merge($arProductSections, $arSectionsTmp); } $arProductSections = array_unique($arProductSections); return $arProductSections;
Возвращает не разделы а группы
Я проверил код, выводятся разделы элемента, или я что-то не то понял?
В доке речь о группах, может это я что-то не понял? 🤦😁
Начали вы хорошо, закончили так себе. Использование стэк-кеша и запросы по левой и правой границе - неправильно.
как говориться, "начинали за здравие...")
Обсуждают сегодня