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

50 lines
1.8 KiB
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>
<!-- Sous-page -->
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']); }?>
<!-- articles d'une sous-page blog-->
<ul>
<?php if ($this->getData(['page', $childId, 'moduleId']) === 'blog') { ?>
<?php
foreach($this->getData(['module',$childId]) as $articleId => $article): ?>
<li>
2019-06-09 09:09:27 +02:00
<a href="<?php echo helper::baseUrl() . $childId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endforeach;
} ?>
</ul>
<!-- -->
2018-04-02 08:29:19 +02:00
</li>
<?php endforeach; ?>
<!-- ou articles d'un blog-->
<?php if ($this->getData(['page', $parentId, 'moduleId']) === 'blog') { ?>
<?php
foreach($this->getData(['module',$parentId]) as $articleId => $article): ?>
<li>
2019-06-09 09:09:27 +02:00
<a href="<?php echo helper::baseUrl() . $parentId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endforeach;
} ?>
2018-04-02 08:29:19 +02:00
</ul>
</li>
<?php endforeach; ?>
</ul>