Помогите вывести current informationsystem_group в XML, это реально сделать?
Есть вот такой вывод меню, выводит элементы из текущей информационной системы
<?php
// Верхнее меню
$Structure_Controller_Show = new Structure_Controller_Show(
Core_Entity::factory('Site', CURRENT_SITE));
$Structure_Controller_Show->xsl(Core_Entity::factory('Xsl')
->getByName('МенюРазделов'))
->showInformationsystemGroups(true)
->menu(1)
->parentId(CURRENT_STRUCTURE_ID)
->show();
?>
На выходе получается вот такой XML
<site id="1">
<name>Демонстрационный сайт</name>
<active>1</active>
<coding>UTF-8</coding>
<sorting>0</sorting>
<locale>ru_RU.utf8</locale>
<timezone></timezone>
<max_size_load_image>70</max_size_load_image>
<max_size_load_image_big>300</max_size_load_image_big>
<admin_email>admin@localhost.ru</admin_email>
<send_attendance_report>1</send_attendance_report>
<chmod>0777</chmod>
<files_chmod>0777</files_chmod>
<date_format>%d.%m.%Y</date_format>
<date_time_format>%d.%m.%Y %H:%M:%S</date_time_format>
<error>E_ALL</error>
<error404>10</error404>
<error403>38</error403>
<user_id>19</user_id>
<closed>79</closed>
<safe_email>0</safe_email>
<css_left></css_left>
<css_right></css_right>
<notes></notes>
<uploaddir>upload/</uploaddir>
<nesting_level>3</nesting_level>
<deleted>0</deleted>
<parent_id>95</parent_id>
<current_structure_id>95</current_structure_id>
<informationsystem_group id="10">
<informationsystem_id>17</informationsystem_id>
<siteuser_id>0</siteuser_id>
<parent_id>0</parent_id>
<top_parent_id>0</top_parent_id>
<name>Администрация</name>
<description></description>
<sorting>0</sorting>
<path>administration</path>
<image_large></image_large>
<image_small></image_small>
<indexing>1</indexing>
<subgroups_count>0</subgroups_count>
<subgroups_total_count>0</subgroups_total_count>
<items_count>0</items_count>
<items_total_count>0</items_total_count>
<seo_title></seo_title>
<seo_description></seo_description>
<seo_keywords></seo_keywords>
<siteuser_group_id>0</siteuser_group_id>
<active>1</active>
<user_id>19</user_id>
<sns_type_id>0</sns_type_id>
<url>/administration/administration/</url>
<dir>/upload/information_system_17/0/1/0/group_10/</dir>
<link>/administration/administration/</link>
<show>1</show>
</informationsystem_group>
<informationsystem_group id="9">
<informationsystem_id>17</informationsystem_id>
<siteuser_id>0</siteuser_id>
<parent_id>0</parent_id>
<top_parent_id>0</top_parent_id>
<name>Руководители коллективов</name>
<description></description>
<sorting>0</sorting>
<path>leaders-of-groups</path>
<image_large></image_large>
<image_small></image_small>
<indexing>1</indexing>
<subgroups_count>0</subgroups_count>
<subgroups_total_count>0</subgroups_total_count>
<items_count>0</items_count>
<items_total_count>0</items_total_count>
<seo_title></seo_title>
<seo_description></seo_description>
<seo_keywords></seo_keywords>
<siteuser_group_id>0</siteuser_group_id>
<active>1</active>
<user_id>19</user_id>
<sns_type_id>0</sns_type_id>
<url>/administration/leaders-of-groups/</url>
<dir>/upload/information_system_17/0/0/9/group_9/</dir>
<link>/administration/leaders-of-groups/</link>
<show>1</show>
</informationsystem_group>
</site>
Мне нужно сделать в меню выделение текущего уровня, никак не могу найти, как запихнуть текущий номер группы/
Помогите пожалуйста разобраться