You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
777 B
25 lines
777 B
<?php
|
|
if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true) die();
|
|
|
|
use Bitrix\Main\Loader;
|
|
use Bitrix\Iblock\SectionTable;
|
|
use Bitrix\Iblock\ElementTable;
|
|
|
|
class HtmlMapComponent extends CBitrixComponent
|
|
{
|
|
public function executeComponent()
|
|
{
|
|
// Получаем структуру сайта (разделы, фильтры)
|
|
$this->arResult['TREE'] = $this->getSiteTree();
|
|
$this->includeComponentTemplate();
|
|
}
|
|
|
|
private function getSiteTree()
|
|
{
|
|
// TODO: Реализовать сбор структуры сайта, разделов, фильтров
|
|
// Пример: получить разделы каталога
|
|
$tree = [];
|
|
// ...
|
|
return $tree;
|
|
}
|
|
}
|