Группы и подгруппы инфосистемы (как меню)

#
Группы и подгруппы инфосистемы (как меню)
Возможно ли реализовать такое меню посредством XSL шаблона.
Реализовывать посредством меню вбивая категории и подкатегории в моей ситуации неудобно.
Требуется автоматически выводить категории и подкатегории в таком виде.

-Категория
    - подкатегория
      - подпод категория
    
   +Категория
+Категория
    +подкатегория

Возможно ли реализовать модернизировав шаблон (СписокЭлементовИнфосистемы)

Есть ли готовое решение.
    
#
Re: Группы и подгруппы инфосистемы (как меню)
Сделал по примеру магазина .
Не работает.

Fatal error: Call to undefined method informationsystem::GetItemPath() in



<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
      encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml" />
   <xsl:template match="/">
      <xsl:apply-templates select="/document"/>
   </xsl:template>
   <!-- Шаблон -->
   <xsl:template match="/shop">
      <xsl:variable name="parent_group_id" select="@current_group_id"/>
      <!-- Выводим группы  -->
      <ul>
         <xsl:apply-templates select="//group[@parent=0]"/>
      </ul>
   </xsl:template>
   <!-- Шаблон для групп  -->
   <xsl:template match="group">
      <xsl:variable name="current_group_id" select="/ТекущаяГруппа"/>
      <li>
         <xsl:choose>
            <xsl:when test="$current_group_id = @id or count(.//group[@id=$current_group_id])=1">
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
               <xsl:if test="count_all_groups > 0">
                  <ul>
                     <xsl:apply-templates select="group"/>
                  </ul>
               </xsl:if>
            </xsl:when>
            <xsl:otherwise>
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
            </xsl:otherwise>
         </xsl:choose>
      </li>
   </xsl:template>
</xsl:stylesheet>


<?php
  $InformationSystem = & singleton('InformationSystem');
  $InformationSystemId = 48;
   $rez = array();
   $rez = $InformationSystem->GetItemPath($InformationSystemId);
   $external_propertys = array();
   $external_propertys['ТекущаяГруппа'] = $rez['group'];
   $param = array('current_group_id' => 0, 'items_on_page' => 10);
   $param['xml_show_group_type'] = 'all';
   $xsl_catalog = 'МЕНЮ234';
   $InformationSystem->ShowInformationSystem( $InformationSystemId, $xsl_catalog, $param, $external_propertys);
?>
Модератор
#
Re: Группы и подгруппы инфосистемы (как меню)
Правильно, метода GetItemPath в указанном классе нет.
$rez = $InformationSystem->GetInformationFromPath($InformationSystemId, '', false);
#
Re: Группы и подгруппы инфосистемы (как меню)
В реалии чтото я в шаблоне напутал тоже.Посмотрите пожалуйста.

<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
      encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml" />
   <xsl:template match="/">
      <xsl:apply-templates select="/document"/>
   </xsl:template>
   <!-- Шаблон -->
   <xsl:template match="/">
      <xsl:variable name="parent_group_id" select="@current_group_id"/>
      <!-- Выводим группы  -->
      <ul>
         <xsl:apply-templates select="//group[@parent=0]"/>
      </ul>
   </xsl:template>
   <!-- Шаблон для групп  -->
   <xsl:template match="group">
      <xsl:variable name="current_group_id" select="/ТекущаяГруппа"/>
      <li>
         <xsl:choose>
            <xsl:when test="$current_group_id = @id or count(.//group[@id=$current_group_id])=1">
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
               <xsl:if test="count_all_groups > 0">
                  <ul>
                     <xsl:apply-templates select="group"/>
                  </ul>
               </xsl:if>
            </xsl:when>
            <xsl:otherwise>
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
            </xsl:otherwise>
         </xsl:choose>
      </li>
   </xsl:template>
</xsl:stylesheet>
Модератор
#
Re: Группы и подгруппы инфосистемы (как меню)
что именно не работает?
#
Re: Группы и подгруппы инфосистемы (как меню)
а пустая страница выводится
Модератор
#
Re: Группы и подгруппы инфосистемы (как меню)
XML покажите.
#
Re: Группы и подгруппы инфосистемы (как меню)
<?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE xsl:stylesheet>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output xmlns="http://www.w3.org/TR/xhtml1/strict" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
      encoding="Windows-1251" indent="yes" method="html" omit-xml-declaration="no" version="1.0" media-type="text/xml" />
   <xsl:template match="/">
      <xsl:apply-templates select="/document"/>
   </xsl:template>
   <!-- Шаблон -->
   <xsl:template match="/shop">
      <xsl:variable name="parent_group_id" select="@current_group_id"/>
      <!-- Выводим группы  -->
      <ul>
         <xsl:apply-templates select="//group[@parent=0]"/>
      </ul>
   </xsl:template>
   <!-- Шаблон для групп  -->
   <xsl:template match="group">
      <xsl:variable name="current_group_id" select="/ТекущаяГруппа"/>
      <li>
         <xsl:choose>
            <xsl:when test="$current_group_id = @id or count(.//group[@id=$current_group_id])=1">
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
               <xsl:if test="count_all_groups > 0">
                  <ul>
                     <xsl:apply-templates select="group"/>
                  </ul>
               </xsl:if>
            </xsl:when>
            <xsl:otherwise>
               <a href="{/document/blocks/url}{fullpath}"><xsl:value-of disable-output-escaping="yes" select="name"/></a>
            </xsl:otherwise>
         </xsl:choose>
      </li>
   </xsl:template>
</xsl:stylesheet>
Модератор
#
Re: Группы и подгруппы инфосистемы (как меню)
это XSL, а я XML попросил.
#
Re: Группы и подгруппы инфосистемы (как меню)


<?xml version="1.0" encoding="windows-1251"?>
<document>
<site_user_id>0</site_user_id>
<blocks id="48">
<name>навигатор</name>
<description></description>
<url>/bases/</url>
<access>0</access>
<parent_group_id>0</parent_group_id>
<count_items>0</count_items>
<count_items_on_page>10</count_items_on_page>
<count_all_items>13878</count_all_items>
<count_groups>102</count_groups>
<count_all_groups>2090</count_all_groups>
<group id="1992" parent_id="0">
<site_user>0</site_user>
<name>Оценочная деятельность</name>
<description></description>
<order>63</order>
<path>oiiiu</path>
<fullpath>oiiiu/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>270</count_all_items>
<count_groups>52</count_groups>
<count_all_groups>199</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Оценочная деятельность</seo_title>
<seo_description>Оценочная деятельность</seo_description>
<seo_keywords>Оценочная деятельность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1993" parent_id="0">
<site_user>0</site_user>
<name>Прописка (регистрация)</name>
<description></description>
<order>64</order>
<path>oiuh</path>
<fullpath>oiuh/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>78</count_all_items>
<count_groups>38</count_groups>
<count_all_groups>152</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Прописка (регистрация)</seo_title>
<seo_description>Прописка (регистрация)</seo_description>
<seo_keywords>Прописка (регистрация)</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1994" parent_id="0">
<site_user>0</site_user>
<name>Реконструкция. Ремонт зданий и сооружений</name>
<description></description>
<order>81</order>
<path>lliuio</path>
<fullpath>lliuio/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>16</count_all_items>
<count_groups>6</count_groups>
<count_all_groups>24</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Реконструкция. Ремонт зданий и сооружений</seo_title>
<seo_description>Реконструкция. Ремонт зданий и сооружений</seo_description>
<seo_keywords>Реконструкция. Ремонт зданий и сооружений</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1995" parent_id="0">
<site_user>0</site_user>
<name>Сделки</name>
<description></description>
<order>82</order>
<path>iuyy</path>
<fullpath>iuyy/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3903</count_all_items>
<count_groups>46</count_groups>
<count_all_groups>187</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Сделки</seo_title>
<seo_description>Сделки</seo_description>
<seo_keywords>Сделки</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1996" parent_id="0">
<site_user>0</site_user>
<name>Собственность государственная</name>
<description></description>
<order>83</order>
<path>llkj</path>
<fullpath>llkj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>109</count_all_items>
<count_groups>16</count_groups>
<count_all_groups>64</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Собственность государственная</seo_title>
<seo_description>Собственность государственная</seo_description>
<seo_keywords>Собственность государственная</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2009" parent_id="0">
<site_user>0</site_user>
<name>Цессия</name>
<description></description>
<order>100</order>
<path>khss</path>
<fullpath>khss/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1102</count_all_items>
<count_groups>35</count_groups>
<count_all_groups>140</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Цессия</seo_title>
<seo_description>Цессия</seo_description>
<seo_keywords>Цессия</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2010" parent_id="0">
<site_user>0</site_user>
<name>Юридические лица</name>
<description></description>
<order>101</order>
<path>gfgg</path>
<fullpath>gfgg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>14</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Юридические лица</seo_title>
<seo_description>Юридические лица</seo_description>
<seo_keywords>Юридические лица</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1893" parent_id="0">
<site_user>0</site_user>
<name>Авторское право</name>
<description></description>
<order>1</order>
<path>autor</path>
<fullpath>autor/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>459</count_all_items>
<count_groups>71</count_groups>
<count_all_groups>284</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Авторское право</seo_title>
<seo_description>Авторское право</seo_description>
<seo_keywords>Авторское право</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1894" parent_id="0">
<site_user>0</site_user>
<name>Арбитражный процесс</name>
<description>&lt;hr /&gt;</description>
<order>2</order>
<path>arbitr</path>
<fullpath>arbitr/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1161</count_all_items>
<count_groups>12</count_groups>
<count_all_groups>48</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Арбитражный процесс</seo_title>
<seo_description>Арбитражный процесс</seo_description>
<seo_keywords>Арбитражный процесс</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1895" parent_id="0">
<site_user>0</site_user>
<name>Арбитражный суд</name>
<description></description>
<order>3</order>
<path>arbitrsge_sud</path>
<fullpath>arbitrsge_sud/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>10</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Арбитражный суд</seo_title>
<seo_description>Арбитражный суд</seo_description>
<seo_keywords>Арбитражный суд</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1896" parent_id="0">
<site_user>0</site_user>
<name>Аренда земли</name>
<description></description>
<order>4</order>
<path>arenda_zemli</path>
<fullpath>arenda_zemli/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>41</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>6</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Аренда земли</seo_title>
<seo_description>Аренда земли</seo_description>
<seo_keywords>Аренда земли</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1897" parent_id="0">
<site_user>0</site_user>
<name>Аренда офисов, помещений</name>
<description></description>
<order>5</order>
<path>arenda</path>
<fullpath>arenda/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>63</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Аренда офисов, помещений</seo_title>
<seo_description>Аренда офисов, помещений</seo_description>
<seo_keywords>Аренда офисов, помещений</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1898" parent_id="0">
<site_user>0</site_user>
<name>Вред</name>
<description></description>
<order>6</order>
<path>vred</path>
<fullpath>vred/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>44</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Вред</seo_title>
<seo_description>Вред</seo_description>
<seo_keywords>Вред</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1899" parent_id="0">
<site_user>0</site_user>
<name>Договоры</name>
<description></description>
<order>7</order>
<path>dogovor</path>
<fullpath>dogovor/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>4534</count_all_items>
<count_groups>38</count_groups>
<count_all_groups>152</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Договоры</seo_title>
<seo_description>Договоры</seo_description>
<seo_keywords>Договоры</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1900" parent_id="0">
<site_user>0</site_user>
<name>Долевое строительство</name>
<description></description>
<order>8</order>
<path>dolevoe</path>
<fullpath>dolevoe/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>5</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Долевое строительство</seo_title>
<seo_description>Долевое строительство</seo_description>
<seo_keywords>Долевое строительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1907" parent_id="0">
<site_user>0</site_user>
<name>Дорожно-транспортное происшествие</name>
<description></description>
<order>9</order>
<path>dtp</path>
<fullpath>dtp/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>17</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Дорожно-транспортное происшествие</seo_title>
<seo_description>Дорожно-транспортное происшествие</seo_description>
<seo_keywords>Дорожно-транспортное происшествие</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1908" parent_id="0">
<site_user>0</site_user>
<name>Жилище. Субсидии и компенсации</name>
<description></description>
<order>10</order>
<path>subsidii</path>
<fullpath>subsidii/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Субсидии и компенсации</seo_title>
<seo_description>Субсидии и компенсации</seo_description>
<seo_keywords>Субсидии и компенсации</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1909" parent_id="0">
<site_user>0</site_user>
<name>Жилищные кооперативы. ЖСК</name>
<description></description>
<order>11</order>
<path>hzsk</path>
<fullpath>hzsk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилищные кооперативы. ЖСК</seo_title>
<seo_description>Жилищные кооперативы. ЖСК</seo_description>
<seo_keywords>Жилищные кооперативы. ЖСК</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1910" parent_id="0">
<site_user>0</site_user>
<name>Жилищные накопительные кооперативы</name>
<description></description>
<order>12</order>
<path>nakopiteln</path>
<fullpath>nakopiteln/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилищные накопительные кооперативы</seo_title>
<seo_description>Жилищные накопительные кооперативы</seo_description>
<seo_keywords>Жилищные накопительные кооперативы</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1911" parent_id="0">
<site_user>0</site_user>
<name>Жилищный сертификат</name>
<description></description>
<order>13</order>
<path>sertifikat</path>
<fullpath>sertifikat/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилищный сертификат</seo_title>
<seo_description>Жилищный сертификат</seo_description>
<seo_keywords>Жилищный сертификат</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1912" parent_id="0">
<site_user>0</site_user>
<name>Жилищный фонд</name>
<description></description>
<order>14</order>
<path>fond</path>
<fullpath>fond/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилищный фонд</seo_title>
<seo_description>Жилищный фонд</seo_description>
<seo_keywords>Жилищный фонд</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1913" parent_id="0">
<site_user>0</site_user>
<name>Жилье ветхое аварийное</name>
<description></description>
<order>15</order>
<path>zhilye</path>
<fullpath>zhilye/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье ветхое аварийное</seo_title>
<seo_description>Жилье ветхое аварийное</seo_description>
<seo_keywords>Жилье ветхое аварийное</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1914" parent_id="0">
<site_user>0</site_user>
<name>Жилье служебное(ведомственное)</name>
<description></description>
<order>16</order>
<path>sluhz</path>
<fullpath>sluhz/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье служебное</seo_title>
<seo_description>Жилье служебное</seo_description>
<seo_keywords>Жилье служебное</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1915" parent_id="0">
<site_user>0</site_user>
<name>Жилье. Выселение</name>
<description></description>
<order>17</order>
<path>jkg</path>
<fullpath>jkg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье. Выселение</seo_title>
<seo_description>Жилье. Выселение</seo_description>
<seo_keywords>Жилье. Выселение</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1917" parent_id="0">
<site_user>0</site_user>
<name>Жилье. Обмен</name>
<description></description>
<order>18</order>
<path>obmen</path>
<fullpath>obmen/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>32</count_all_items>
<count_groups>19</count_groups>
<count_all_groups>76</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье. Обмен</seo_title>
<seo_description>Жилье. Обмен</seo_description>
<seo_keywords>Жилье. Обмен</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1918" parent_id="0">
<site_user>0</site_user>
<name>Жилье. Право собственности</name>
<description></description>
<order>19</order>
<path>pravo</path>
<fullpath>pravo/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье. Право собственности</seo_title>
<seo_description>Жилье. Право собственности</seo_description>
<seo_keywords>Жилье. Право собственности</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1919" parent_id="0">
<site_user>0</site_user>
<name>Жилье. Предоставление</name>
<description></description>
<order>20</order>
<path>gfhn</path>
<fullpath>gfhn/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье. Предоставление</seo_title>
<seo_description>Жилье. Предоставление</seo_description>
<seo_keywords>Жилье. Предоставление</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1920" parent_id="0">
<site_user>0</site_user>
<name>Жилье. Приватизация</name>
<description></description>
<order>21</order>
<path>mnj</path>
<fullpath>mnj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Жилье. Приватизация</seo_title>
<seo_description>Жилье. Приватизация</seo_description>
<seo_keywords>Жилье. Приватизация</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1921" parent_id="0">
<site_user>0</site_user>
<name>Заем</name>
<description></description>
<order>22</order>
<path>zaem</path>
<fullpath>zaem/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Заем</seo_title>
<seo_description>Заем</seo_description>
<seo_keywords>Заем</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1922" parent_id="0">
<site_user>0</site_user>
<name>Заключение и прекращение брака</name>
<description></description>
<order>23</order>
<path>brak</path>
<fullpath>brak/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Заключение и прекращение брака</seo_title>
<seo_description>Заключение и прекращение брака</seo_description>
<seo_keywords>Заключение и прекращение брака</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1923" parent_id="0">
<site_user>0</site_user>
<name>Залог</name>
<description></description>
<order>24</order>
<path>zalog</path>
<fullpath>zalog/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Залог</seo_title>
<seo_description>Залог</seo_description>
<seo_keywords>Залог</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1924" parent_id="0">
<site_user>0</site_user>
<name>Защита прав потребителей</name>
<description></description>
<order>25</order>
<path>sdfg</path>
<fullpath>sdfg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Защита прав потребителей</seo_title>
<seo_description>Защита прав потребителей</seo_description>
<seo_keywords>Защита прав потребителей</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1925" parent_id="0">
<site_user>0</site_user>
<name>Заявления и жалобы граждан</name>
<description></description>
<order>26</order>
<path>cdbn</path>
<fullpath>cdbn/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Заявления и жалобы граждан</seo_title>
<seo_description>Заявления и жалобы граждан</seo_description>
<seo_keywords>Заявления и жалобы граждан</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1927" parent_id="0">
<site_user>0</site_user>
<name>Земельный налог. Плата за землю</name>
<description></description>
<order>27</order>
<path>sdf</path>
<fullpath>sdf/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Земельный налог. Плата за землю</seo_title>
<seo_description>Земельный налог. Плата за землю</seo_description>
<seo_keywords>Земельный налог. Плата за землю</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1926" parent_id="0">
<site_user>0</site_user>
<name>Землеустройство</name>
<description></description>
<order>28</order>
<path>gfhjm</path>
<fullpath>gfhjm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Землеустройство</seo_title>
<seo_description>Землеустройство</seo_description>
<seo_keywords>Землеустройство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1928" parent_id="0">
<site_user>0</site_user>
<name>Земля . Категории</name>
<description></description>
<order>29</order>
<path>asdf</path>
<fullpath>asdf/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Земля . Категории</seo_title>
<seo_description>Земля . Категории</seo_description>
<seo_keywords>Земля . Категории</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1929" parent_id="0">
<site_user>0</site_user>
<name>Земля. Приватизация</name>
<description></description>
<order>30</order>
<path>asdff</path>
<fullpath>asdff/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Земля. Приватизация</seo_title>
<seo_description>Земля. Приватизация</seo_description>
<seo_keywords>Земля. Приватизация</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1930" parent_id="0">
<site_user>0</site_user>
<name>Изобретения</name>
<description></description>
<order>31</order>
<path>gfbn</path>
<fullpath>gfbn/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Изобретения</seo_title>
<seo_description>Изобретения</seo_description>
<seo_keywords>Изобретения</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1931" parent_id="0">
<site_user>0</site_user>
<name>Индивидуальное жилищное строительство</name>
<description></description>
<order>32</order>
<path>xbnm</path>
<fullpath>xbnm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>19</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>5</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Индивидуальное жилищное строительство</seo_title>
<seo_description>Индивидуальное жилищное строительство</seo_description>
<seo_keywords>Индивидуальное жилищное строительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1932" parent_id="0">
<site_user>0</site_user>
<name>Индивидуальные трудовые споры</name>
<description></description>
<order>33</order>
<path>cvbn</path>
<fullpath>cvbn/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>5</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>5</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Индивидуальные трудовые споры</seo_title>
<seo_description>Индивидуальные трудовые споры</seo_description>
<seo_keywords>Индивидуальные трудовые споры</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1934" parent_id="0">
<site_user>0</site_user>
<name>Интеллектуальная собственность</name>
<description></description>
<order>34</order>
<path>cvxnh</path>
<fullpath>cvxnh/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Интеллектуальная собственность</seo_title>
<seo_description>Интеллектуальная собственность</seo_description>
<seo_keywords>Интеллектуальная собственность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1935" parent_id="0">
<site_user>0</site_user>
<name>Интеллектуальная собственность с 2008 г.</name>
<description></description>
<order>35</order>
<path>fhj</path>
<fullpath>fhj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Интеллектуальная собственность с 2008 г.</seo_title>
<seo_description>Интеллектуальная собственность с 2008 г.</seo_description>
<seo_keywords>Интеллектуальная собственность с 2008 г.</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1936" parent_id="0">
<site_user>0</site_user>
<name>Исковая давность</name>
<description></description>
<order>36</order>
<path>cbnmg</path>
<fullpath>cbnmg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>46</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Исковая давность</seo_title>
<seo_description>Исковая давность</seo_description>
<seo_keywords>Исковая давность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1937" parent_id="0">
<site_user>0</site_user>
<name>Исполнительное производство</name>
<description></description>
<order>37</order>
<path>ispoln</path>
<fullpath>ispoln/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Исполнительное производство</seo_title>
<seo_description>Исполнительное производство</seo_description>
<seo_keywords>Исполнительное производство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1939" parent_id="0">
<site_user>0</site_user>
<name>Коммунальная квартира</name>
<description></description>
<order>38</order>
<path>dgt</path>
<fullpath>dgt/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>1</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Коммунальная квартира</seo_title>
<seo_description>Коммунальная квартира</seo_description>
<seo_keywords>Коммунальная квартира</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1941" parent_id="0">
<site_user>0</site_user>
<name>Компенсации</name>
<description></description>
<order>39</order>
<path>komp</path>
<fullpath>komp/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>14</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Компенсации</seo_title>
<seo_description>Компенсации</seo_description>
<seo_keywords>Компенсации</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1942" parent_id="0">
<site_user>0</site_user>
<name>Купля-продажа</name>
<description></description>
<order>40</order>
<path>dgh</path>
<fullpath>dgh/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>37</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Купля-продажа</seo_title>
<seo_description>Купля-продажа</seo_description>
<seo_keywords>Купля-продажа</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1943" parent_id="0">
<site_user>0</site_user>
<name>Купля-продажа жилья</name>
<description></description>
<order>41</order>
<path>ghmm</path>
<fullpath>ghmm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Купля-продажа жилья</seo_title>
<seo_description>Купля-продажа жилья</seo_description>
<seo_keywords>Купля-продажа жилья</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1944" parent_id="0">
<site_user>0</site_user>
<name>Купля-продажа земли</name>
<description></description>
<order>42</order>
<path>ghjk</path>
<fullpath>ghjk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>15</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Купля-продажа земли</seo_title>
<seo_description>Купля-продажа земли</seo_description>
<seo_keywords>Купля-продажа земли</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1945" parent_id="0">
<site_user>0</site_user>
<name>Купля-продажа предприятия</name>
<description></description>
<order>43</order>
<path>dhjkd</path>
<fullpath>dhjkd/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>29</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Купля-продажа предприятия</seo_title>
<seo_description>Купля-продажа предприятия</seo_description>
<seo_keywords>Купля-продажа предприятия</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1946" parent_id="0">
<site_user>0</site_user>
<name>Мена</name>
<description></description>
<order>44</order>
<path>ghm</path>
<fullpath>ghm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>6</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Мена</seo_title>
<seo_description>Мена</seo_description>
<seo_keywords>Мена</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1947" parent_id="0">
<site_user>0</site_user>
<name>Минимальный размер оплаты труда</name>
<description></description>
<order>45</order>
<path>dhjas</path>
<fullpath>dhjas/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>261</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Минимальный размер оплаты труда</seo_title>
<seo_description>Минимальный размер оплаты труда</seo_description>
<seo_keywords>Минимальный размер оплаты труда</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1948" parent_id="0">
<site_user>0</site_user>
<name>Мировые судьи</name>
<description></description>
<order>46</order>
<path>dhj</path>
<fullpath>dhj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>4</count_all_items>
<count_groups>11</count_groups>
<count_all_groups>17</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Мировые судьи</seo_title>
<seo_description>Мировые судьи</seo_description>
<seo_keywords>Мировые судьи</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1949" parent_id="0">
<site_user>0</site_user>
<name>Многоквартирный дом</name>
<description></description>
<order>47</order>
<path>ghj</path>
<fullpath>ghj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>53</count_all_items>
<count_groups>9</count_groups>
<count_all_groups>36</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Многоквартирный дом</seo_title>
<seo_description>Многоквартирный дом</seo_description>
<seo_keywords>Многоквартирный дом</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1950" parent_id="0">
<site_user>0</site_user>
<name>Моральный вред</name>
<description></description>
<order>48</order>
<path>jdhm</path>
<fullpath>jdhm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>25</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Моральный вред</seo_title>
<seo_description>Моральный вред</seo_description>
<seo_keywords>Моральный вред</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1951" parent_id="0">
<site_user>0</site_user>
<name>Наем жилья коммерческий</name>
<description></description>
<order>49</order>
<path>ghjkfj</path>
<fullpath>ghjkfj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>4</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Наем жилья коммерческий</seo_title>
<seo_description>Наем жилья коммерческий</seo_description>
<seo_keywords>Наем жилья коммерческий</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1952" parent_id="0">
<site_user>0</site_user>
<name>Наем жилья социальный</name>
<description></description>
<order>50</order>
<path>dghj</path>
<fullpath>dghj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Наем жилья социальный</seo_title>
<seo_description>Наем жилья социальный</seo_description>
<seo_keywords>Наем жилья социальный</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1953" parent_id="0">
<site_user>0</site_user>
<name>Наследование</name>
<description></description>
<order>51</order>
<path>nasledovanie</path>
<fullpath>nasledovanie/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>5</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Наследование</seo_title>
<seo_description>Наследование</seo_description>
<seo_keywords>Наследование</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1954" parent_id="0">
<site_user>0</site_user>
<name>НДФЛ</name>
<description></description>
<order>52</order>
<path>ghk</path>
<fullpath>ghk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>53</count_all_items>
<count_groups>5</count_groups>
<count_all_groups>20</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>НДФЛ</seo_title>
<seo_description>НДФЛ</seo_description>
<seo_keywords>НДФЛ</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1955" parent_id="0">
<site_user>0</site_user>
<name>Недвижимость. Административная ответственность</name>
<description></description>
<order>53</order>
<path>fhmn</path>
<fullpath>fhmn/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>9</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Недвижимость. Административная ответственность</seo_title>
<seo_description>Недвижимость. Административная ответственность</seo_description>
<seo_keywords>Недвижимость. Административная ответственность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1956" parent_id="0">
<site_user>0</site_user>
<name>Недвижимость. Купля-продажа</name>
<description></description>
<order>54</order>
<path>fhjhj</path>
<fullpath>fhjhj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>14</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Недвижимость. Купля-продажа</seo_title>
<seo_description>Недвижимость. Купля-продажа</seo_description>
<seo_keywords>Недвижимость. Купля-продажа</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1957" parent_id="0">
<site_user>0</site_user>
<name>Недвижимость. Регистрация</name>
<description></description>
<order>55</order>
<path>ghmd</path>
<fullpath>ghmd/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>25</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Недвижимость. Регистрация</seo_title>
<seo_description>Недвижимость. Регистрация</seo_description>
<seo_keywords>Недвижимость. Регистрация</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1958" parent_id="0">
<site_user>0</site_user>
<name>Недвижимость. Формы для регистрации</name>
<description></description>
<order>56</order>
<path>gbnm</path>
<fullpath>gbnm/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>16</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Недвижимость. Формы для регистрации</seo_title>
<seo_description>Недвижимость. Формы для регистрации</seo_description>
<seo_keywords>Недвижимость. Формы для регистрации</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1960" parent_id="0">
<site_user>0</site_user>
<name>Нежилые помещения</name>
<description></description>
<order>57</order>
<path>kjhjkg</path>
<fullpath>kjhjkg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>40</count_all_items>
<count_groups>32</count_groups>
<count_all_groups>38</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Нежилые помещения</seo_title>
<seo_description>Нежилые помещения</seo_description>
<seo_keywords>Нежилые помещения</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1961" parent_id="0">
<site_user>0</site_user>
<name>Неосновательное обогащение</name>
<description></description>
<order>58</order>
<path>lklkhg</path>
<fullpath>lklkhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>16</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Неосновательное обогащение</seo_title>
<seo_description>Неосновательное обогащение</seo_description>
<seo_keywords>Неосновательное обогащение</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1962" parent_id="0">
<site_user>0</site_user>
<name>Общество с ограниченной ответственностью</name>
<description></description>
<order>59</order>
<path>mkjk</path>
<fullpath>mkjk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>39</count_all_items>
<count_groups>5</count_groups>
<count_all_groups>20</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Общество с ограниченной ответственностью</seo_title>
<seo_description>Общество с ограниченной ответственностью</seo_description>
<seo_keywords>Общество с ограниченной ответственностью</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1963" parent_id="0">
<site_user>0</site_user>
<name>Объекты гражданских прав</name>
<description></description>
<order>60</order>
<path>kjhg</path>
<fullpath>kjhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>83</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Объекты гражданских прав</seo_title>
<seo_description>Объекты гражданских прав</seo_description>
<seo_keywords>Объекты гражданских прав</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1964" parent_id="0">
<site_user>0</site_user>
<name>Обязательства</name>
<description></description>
<order>61</order>
<path>jkhg</path>
<fullpath>jkhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>81</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Обязательства</seo_title>
<seo_description>Обязательства</seo_description>
<seo_keywords>Обязательства</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1965" parent_id="0">
<site_user>0</site_user>
<name>Опека и попечительство</name>
<description></description>
<order>62</order>
<path>kjhgt</path>
<fullpath>kjhgt/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Опека и попечительство</seo_title>
<seo_description>Опека и попечительство</seo_description>
<seo_keywords>Опека и попечительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1967" parent_id="0">
<site_user>0</site_user>
<name>Паевой инвестиционный фонд</name>
<description></description>
<order>65</order>
<path>hkhg</path>
<fullpath>hkhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>14</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Паевой инвестиционный фонд</seo_title>
<seo_description>Паевой инвестиционный фонд</seo_description>
<seo_keywords>Паевой инвестиционный фонд</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1968" parent_id="0">
<site_user>0</site_user>
<name>Патентное право</name>
<description></description>
<order>66</order>
<path>patent</path>
<fullpath>patent/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>38</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Патентное право</seo_title>
<seo_description>Патентное право</seo_description>
<seo_keywords>Патентное право</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1969" parent_id="0">
<site_user>0</site_user>
<name>Перепланировка жилья</name>
<description></description>
<order>67</order>
<path>lktr</path>
<fullpath>lktr/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>31</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Перепланировка жилья</seo_title>
<seo_description>Перепланировка жилья</seo_description>
<seo_keywords>Перепланировка жилья</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1970" parent_id="0">
<site_user>0</site_user>
<name>Подряд</name>
<description></description>
<order>68</order>
<path>gjhjgf</path>
<fullpath>gjhjgf/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>34</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Подряд</seo_title>
<seo_description>Подряд</seo_description>
<seo_keywords>Подряд</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1971" parent_id="0">
<site_user>0</site_user>
<name>Подряд бытовой</name>
<description></description>
<order>69</order>
<path>kjhdf</path>
<fullpath>kjhdf/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>45</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Подряд бытовой</seo_title>
<seo_description>Подряд бытовой</seo_description>
<seo_keywords>Подряд бытовой</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1972" parent_id="0">
<site_user>0</site_user>
<name>Подряд строительный</name>
<description></description>
<order>70</order>
<path>mhjhj</path>
<fullpath>mhjhj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>47</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Подряд строительный</seo_title>
<seo_description>Подряд строительный</seo_description>
<seo_keywords>Подряд строительный</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1973" parent_id="0">
<site_user>0</site_user>
<name>Поручение. Действие в чужом интересе</name>
<description></description>
<order>71</order>
<path>nmjjmg</path>
<fullpath>nmjjmg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>39</count_all_items>
<count_groups>5</count_groups>
<count_all_groups>20</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Поручение. Действие в чужом интересе</seo_title>
<seo_description>Поручение. Действие в чужом интересе</seo_description>
<seo_keywords>Поручение. Действие в чужом интересе</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1974" parent_id="0">
<site_user>0</site_user>
<name>Поручительство</name>
<description></description>
<order>72</order>
<path>poruch</path>
<fullpath>poruch/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>64</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Поручительство</seo_title>
<seo_description>Поручительство</seo_description>
<seo_keywords>Поручительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1975" parent_id="0">
<site_user>0</site_user>
<name>Права на землю</name>
<description></description>
<order>73</order>
<path>kjhk</path>
<fullpath>kjhk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>40</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Права на землю</seo_title>
<seo_description>Права на землю</seo_description>
<seo_keywords>Права на землю</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1976" parent_id="0">
<site_user>0</site_user>
<name>Право собственности</name>
<description></description>
<order>74</order>
<path>mgvh</path>
<fullpath>mgvh/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>29</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Право собственности</seo_title>
<seo_description>Право собственности</seo_description>
<seo_keywords>Право собственности</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1977" parent_id="0">
<site_user>0</site_user>
<name>Представительство</name>
<description></description>
<order>75</order>
<path>dsdrs</path>
<fullpath>dsdrs/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>81</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Представительство</seo_title>
<seo_description>Представительство</seo_description>
<seo_keywords>Представительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1978" parent_id="0">
<site_user>0</site_user>
<name>Приватизация</name>
<description></description>
<order>76</order>
<path>dsgjjk</path>
<fullpath>dsgjjk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>46</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Приватизация</seo_title>
<seo_description>Приватизация</seo_description>
<seo_keywords>Приватизация</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1979" parent_id="0">
<site_user>0</site_user>
<name>Приватизация на аукционе</name>
<description></description>
<order>77</order>
<path>fss</path>
<fullpath>fss/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>33</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Приватизация на аукционе</seo_title>
<seo_description>Приватизация на аукционе</seo_description>
<seo_keywords>Приватизация на аукционе</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1980" parent_id="0">
<site_user>0</site_user>
<name>Приватизация на конкурсе</name>
<description></description>
<order>78</order>
<path>fdfd</path>
<fullpath>fdfd/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>42</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Приватизация на конкурсе</seo_title>
<seo_description>Приватизация на конкурсе</seo_description>
<seo_keywords>Приватизация на конкурсе</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1981" parent_id="0">
<site_user>0</site_user>
<name>Приватизация. Преобразование в ОАО</name>
<description></description>
<order>79</order>
<path>sdes</path>
<fullpath>sdes/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>24</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Приватизация. Преобразование в ОАО</seo_title>
<seo_description>Приватизация. Преобразование в ОАО</seo_description>
<seo_keywords>Приватизация. Преобразование в ОАО</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1984" parent_id="0">
<site_user>0</site_user>
<name>Рента. Пожизненное содержание</name>
<description></description>
<order>80</order>
<path>ffdg</path>
<fullpath>ffdg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>13</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Рента. Пожизненное содержание</seo_title>
<seo_description>Рента. Пожизненное содержание</seo_description>
<seo_keywords>Рента. Пожизненное содержание</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1987" parent_id="0">
<site_user>0</site_user>
<name>Собственность муниципальная</name>
<description></description>
<order>84</order>
<path>uio</path>
<fullpath>uio/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>31</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Собственность муниципальная</seo_title>
<seo_description>Собственность муниципальная</seo_description>
<seo_keywords>Собственность муниципальная</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1988" parent_id="0">
<site_user>0</site_user>
<name>Собственность общая</name>
<description></description>
<order>85</order>
<path>upup</path>
<fullpath>upup/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>57</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Собственность общая</seo_title>
<seo_description>Собственность общая</seo_description>
<seo_keywords>Собственность общая</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1989" parent_id="0">
<site_user>0</site_user>
<name>Собственность частная</name>
<description></description>
<order>86</order>
<path>pkj</path>
<fullpath>pkj/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>37</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Собственность частная</seo_title>
<seo_description>Собственность частная</seo_description>
<seo_keywords>Собственность частная</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1990" parent_id="0">
<site_user>0</site_user>
<name>Совместная деятельность</name>
<description></description>
<order>87</order>
<path>jopp</path>
<fullpath>jopp/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>40</count_all_items>
<count_groups>2</count_groups>
<count_all_groups>8</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Совместная деятельность</seo_title>
<seo_description>Совместная деятельность</seo_description>
<seo_keywords>Совместная деятельность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="1999" parent_id="0">
<site_user>0</site_user>
<name>Сроки гражданско-правовые</name>
<description></description>
<order>90</order>
<path>jhg</path>
<fullpath>jhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>64</count_all_items>
<count_groups>3</count_groups>
<count_all_groups>12</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Сроки гражданско-правовые</seo_title>
<seo_description>Сроки гражданско-правовые</seo_description>
<seo_keywords>Сроки гражданско-правовые</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2000" parent_id="0">
<site_user>0</site_user>
<name>Ссуда</name>
<description></description>
<order>91</order>
<path>juh</path>
<fullpath>juh/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>12</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>4</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Ссуда</seo_title>
<seo_description>Ссуда</seo_description>
<seo_keywords>Ссуда</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2001" parent_id="0">
<site_user>0</site_user>
<name>Строительство</name>
<description></description>
<order>92</order>
<path>kih</path>
<fullpath>kih/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>198</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Строительство</seo_title>
<seo_description>Строительство</seo_description>
<seo_keywords>Строительство</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2002" parent_id="0">
<site_user>0</site_user>
<name>Строительство незавершенное</name>
<description></description>
<order>93</order>
<path>lojk</path>
<fullpath>lojk/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>5</count_groups>
<count_all_groups>7</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Строительство незавершенное</seo_title>
<seo_description>Строительство незавершенное</seo_description>
<seo_keywords>Строительство незавершенное</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2003" parent_id="0">
<site_user>0</site_user>
<name>Строительство. Административная ответственность</name>
<description></description>
<order>94</order>
<path>khkl</path>
<fullpath>khkl/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Строительство. Административная ответственность</seo_title>
<seo_description>Строительство. Административная ответственность</seo_description>
<seo_keywords>Строительство. Административная ответственность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2004" parent_id="0">
<site_user>0</site_user>
<name>Супруги. Права и обязанности</name>
<description></description>
<order>95</order>
<path>kjho</path>
<fullpath>kjho/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Супруги. Права и обязанности</seo_title>
<seo_description>Супруги. Права и обязанности</seo_description>
<seo_keywords>Супруги. Права и обязанности</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2005" parent_id="0">
<site_user>0</site_user>
<name>Товарищество собственников жилья</name>
<description></description>
<order>96</order>
<path>uyu</path>
<fullpath>uyu/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Товарищество собственников жилья</seo_title>
<seo_description>Товарищество собственников жилья</seo_description>
<seo_keywords>Товарищество собственников жилья</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2006" parent_id="0">
<site_user>0</site_user>
<name>Труд. Административная ответственность</name>
<description></description>
<order>97</order>
<path>ghjt</path>
<fullpath>ghjt/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Труд. Административная ответственность</seo_title>
<seo_description>Труд. Административная ответственность</seo_description>
<seo_keywords>Труд. Административная ответственность</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2007" parent_id="0">
<site_user>0</site_user>
<name>Трудовой договор</name>
<description></description>
<order>98</order>
<path>mhg</path>
<fullpath>mhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Трудовой договор</seo_title>
<seo_description>Трудовой договор</seo_description>
<seo_keywords>Трудовой договор</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2008" parent_id="0">
<site_user>0</site_user>
<name>Усыновление</name>
<description></description>
<order>99</order>
<path>jhkw</path>
<fullpath>jhkw/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Усыновление</seo_title>
<seo_description>Усыновление</seo_description>
<seo_keywords>Усыновление</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2011" parent_id="0">
<site_user>0</site_user>
<name>Юридические лица. Организационно правовые формы.</name>
<description></description>
<order>102</order>
<path>gfhg</path>
<fullpath>gfhg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>0</count_all_items>
<count_groups>0</count_groups>
<count_all_groups>0</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Юридические лица. Организационно правовые формы.</seo_title>
<seo_description>Юридические лица. Организационно правовые формы.</seo_description>
<seo_keywords>Юридические лица. Организационно правовые формы.</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2012" parent_id="0">
<site_user>0</site_user>
<name>Юридические лица. Регистрация.</name>
<description></description>
<order>103</order>
<path>ghqq</path>
<fullpath>ghqq/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>21</count_all_items>
<count_groups>4</count_groups>
<count_all_groups>16</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Юридические лица. Регистрация.</seo_title>
<seo_description>Юридические лица. Регистрация.</seo_description>
<seo_keywords>Юридические лица. Регистрация.</seo_keywords>
<propertys>
</propertys>
</group>
<group id="2013" parent_id="0">
<site_user>0</site_user>
<name>Юридические лица. Формы для регистрации</name>
<description></description>
<order>104</order>
<path>chg</path>
<fullpath>chg/</fullpath>
<access>0</access>
<activity>0</activity>
<count_items>0</count_items>
<count_all_items>3</count_all_items>
<count_groups>1</count_groups>
<count_all_groups>2</count_all_groups>
<allow_indexation>1</allow_indexation>
<seo_title>Юридические лица. Формы для регистрации</seo_title>
<seo_description>Юридические лица. Формы для регистрации</seo_description>
<seo_keywords>Юридические лица. Формы для регистрации</seo_keywords>
<propertys>
</propertys>
</group>
<tags>
</tags>
<items>
<count_items>0</count_items>
<current_page></current_page>
<items_on_page>0</items_on_page>
</items>
</blocks>
</document>


Авторизация