-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrontendModule.php
103 lines (85 loc) · 3.02 KB
/
FrontendModule.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
namespace seiweb\inlinecontent;
use seiweb\ext\NestedSetHelper;
use seiweb\inlinecontent\models\Page;
/**
* dispatcher module definition class
*/
class FrontendModule extends BasicModule
{
public $pages = null;
public $defaultControllerName = 'FrontendController';
public $inlineModulesList = [
'wysiwig' => 'Краткое описание модуля',
'submodule' => 'Не рабочий для тестов',
'files' => 'Список файлов для загрузки',
];
public $defaultRoute = 'frontend/index';
/**
* @inheritdoc
*/
public function init()
{
parent::init();
}
public function getMenu()
{
$pages = [];
foreach ($this->pages as $page) {
$page['items'] = [];
foreach ($page['sections'] as $item) {
if($page['route']!='') {
$module = \Yii::$app->getModule(md5($page['route'].$page['id']));
//$module = \Yii::$app->getModule(str_replace('\\','_',$page['route']));
$module->page = $page;
$submenu = $module->getMenu();
if (isset($submenu))
foreach ($submenu as $submenuitem) {
$submenuitem['url'] = '/' . $page['full_slug'] . '/' . $submenuitem['url'];
$page['items'][] = $submenuitem;
}
}
}
$pages[] = $page;
}
return $this->toHierarchy($pages);
}
private function toHierarchy($collection,$urlAttribute='full_slug',$main_page_slug = '/')
{
// Trees mapped
$trees = array();
$l = 0;
if (count($collection) > 0) {
// Node Stack. Used to help building the hierarchy
$stack = array();
foreach ($collection as $node) {
$item = [
'label'=>$node['title'],
'depth'=>$node['depth'],
'url'=>$node['is_main']==1?$main_page_slug:'/'.$node[$urlAttribute]
];
$item['items'] = $node['items'];
// Number of stack items
$l = count($stack);
// Check if we're dealing with different levels
while($l > 0 && $stack[$l - 1]['depth'] >= $item['depth']) {
array_pop($stack);
$l--;
}
// Stack is empty (we are inspecting the root)
if ($l == 0) {
// Assigning the root node
$i = count($trees);
$trees[$i] = $item;
$stack[] = & $trees[$i];
} else {
// Add node to parent
$i = count($stack[$l - 1]['items']);
$stack[$l - 1]['items'][$i] = $item;
$stack[] = & $stack[$l - 1]['items'][$i];
}
}
}
return $trees;
}
}