-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtopnav.inc
41 lines (35 loc) · 1.17 KB
/
topnav.inc
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
<?php
foreach($pages->get($wire->config->adminRootPageID)->children("check_access=0") as $p) {
if(!$p->viewable()) continue;
$showItem = $user->isSuperuser() ? true : false;
$info = array();
if(!$showItem) {
$checkPages = $p->numChildren ? $p->children("check_access=0") : array($p);
foreach($checkPages as $child) {
if($child->viewable()) {
$showItem = true;
break;
}
}
}
if($showItem) {
$class = strpos($page->path, $p->path) === 0 ? " class='active'" : '';
$title = strip_tags((string)$p->get('title|name'));
$title = __($title, dirname(__FILE__) . '/default.php');
echo "\n\t\t\t\t<li><a href='{$p->url}'$class>$title</a>";
if(count($p->children()) > 0 && $p->id != 3){
echo "<ul>";
echo "<span class='arrow'></span>";
foreach($p->children as $child){
if($child->viewable()) {
$class = strpos($page->path, $child->path) === 0 ? " class='active'" : '';
$child_title = strip_tags((string)$child->get('title|name'));
$child_title = __($child_title, dirname(__FILE__) . '/default.php');
echo "\n\t\t\t\t<li><a href='{$child->url}'$class>$child_title</a></li>";
}
}
echo "</ul>";
}
echo "</li>";
}
}