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 27 28 29 30 |
/** * Возвращаем секцию элемента, имя и т.д. * * @param integer $id ИД элемента * @param integer $level Уровень раздела * * @return array */ function getSectionElement($id, $level = 2) { CModule::IncludeModule("catalog"); $section = CIBlockSection::GetList( Array(), Array( "DEPTH_LEVEL" => $level, "HAS_ELEMENT" => $id ), false, Array(), Array("nTopCount" => 1) ); $result = Array(); while ($res = $section->GetNext()) { $result = $res; } return $result; } |
bitrix, section, element, section element