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

24 lines
1.0 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
<ul>
<?php foreach($this->getHierarchy() as $parentId => $childIds): ?>
<li>
<?php if ($this->getData(['page', $parentId, 'disable']) == false ||
2019-05-02 13:21:48 +02:00
$this->getData(['page', $parentId, 'block']) == 'bar' ||
$this->getUser('group') >= $module::$actions[$action]) { ?>
<a href="<?php echo helper::baseUrl() . $parentId; ?>"><?php echo $this->getData(['page', $parentId, 'title']); ?></a>
<?php } else { ?>
<?php echo $this->getData(['page', $parentId, 'title']); }?>
2018-04-02 08:29:19 +02:00
<ul>
<?php foreach($childIds as $childId): ?>
<li>
2019-05-02 13:21:48 +02:00
<?php if ($this->getData(['page', $childId, 'disable']) == false ||
$this->getData(['page', $childId, 'block']) == 'bar' ||
$this->getUser('group') >= $module::$actions[$action]) { ?>
<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>