ZwiiCMS/core/module/sitemap/view/index/index.php

25 lines
989 B
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<ul>
2019-06-08 21:30:12 +02:00
<?php foreach($this->getHierarchy(null,true,null) as $parentId => $childIds): ?>
2018-04-02 08:29:19 +02:00
<li>
2019-06-08 21:30:12 +02:00
<?php
if ($this->getData(['page', $parentId, 'disable']) === false && $this->getUser('group') >= $this->getData(['page', $parentId, 'group']))
{ ?>
<a href="<?php echo helper::baseUrl() . $parentId; ?>"><?php echo $this->getData(['page', $parentId, 'title']); ?></a>
2019-06-08 21:30:12 +02:00
<?php
} else {
echo $this->getData(['page', $parentId, 'title']);
} ?>
2018-04-02 08:29:19 +02:00
<ul>
<?php foreach($childIds as $childId): ?>
<li>
2019-06-08 21:30:12 +02:00
<?php if ($this->getData(['page', $childId, 'disable']) === false && $this->getUser('group') >= $this->getData(['page', $parentId, 'group']))
{ ?>
<a href="<?php echo helper::baseUrl() . $childId; ?>"><?php echo $this->getData(['page', $childId, 'title']); ?></a>
<?php } else { ?>
<?php echo $this->getData(['page', $childId, 'title']); }?>
2018-04-02 08:29:19 +02:00
</li>
<?php endforeach; ?>
</ul>
</li>
<?php endforeach; ?>
</ul>