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

55 lines
2.1 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 {
// page désactivée
2019-06-08 21:30:12 +02:00
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 { ?>
<!-- page désactivée -->
<?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): ?>
<?php if($this->getData(['module',$childId,$articleId,'state']) === true) {?>
<li>
<a href="<?php echo helper::baseUrl() . $childId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php } ?>
<?php endforeach;
} ?>
</ul>
2018-04-02 08:29:19 +02:00
</li>
<?php endforeach; ?>
<!-- ou articles d'un blog-->
2020-05-18 17:48:08 +02:00
<?php if ($this->getData(['page', $parentId, 'moduleId']) === 'blog' &&
!empty($this->getData(['module',$parentId])) ) { ?>
<?php foreach($this->getData(['module',$parentId]) as $articleId => $article): ?>
<?php if($this->getData(['module',$parentId,$articleId,'state']) === true ): ?>
<li>
<a href="<?php echo helper::baseUrl() . $parentId. '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endif; ?>
<?php endforeach;
} ?>
2018-04-02 08:29:19 +02:00
</ul>
</li>
<?php endforeach; ?>
</ul>