3 changed files with 112 additions and 94 deletions
@ -1,76 +1,4 @@
|
||||
<ul> |
||||
<?php foreach($this->getHierarchy(null,true,null) as $parentId => $childIds): ?> |
||||
<li> |
||||
<?php |
||||
if ($this->getData(['page', $parentId, 'disable']) === false && $this->getUser('group') >= $this->getData(['page', $parentId, 'group'])) |
||||
{ ?> |
||||
<?php $pageUrl = ($parentId !== $this->getData(['locale', 'homePageId'])) ? helper::baseUrl() . $parentId : helper::baseUrl(false) ; ?> |
||||
<a href="<?php echo $pageUrl; ?>"><?php echo $this->getData(['page', $parentId, 'title']); ?></a>
|
||||
<?php |
||||
} else { |
||||
// page désactivée |
||||
echo $this->getData(['page', $parentId, 'title']); |
||||
} ?> |
||||
<ul> |
||||
<?php foreach($childIds as $childId): ?> |
||||
<li> |
||||
<!-- Sous-page --> |
||||
<?php if ($this->getData(['page', $childId, 'disable']) === false && $this->getUser('group') >= $this->getData(['page', $parentId, 'group'])) |
||||
{ ?> |
||||
<?php $pageUrl = ($childId !== $this->getData(['locale', 'homePageId'])) ? helper::baseUrl() . $childId : helper::baseUrl(false) ; ?> |
||||
<a href="<?php echo $pageUrl ; ?>"><?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' && |
||||
!empty($this->getData(['module', $childId, 'posts' ])) ) { ?> |
||||
<?php
|
||||
// Ids des articles par ordre de publication |
||||
$articleIdsPublishedOns = helper::arrayCollumn($this->getData(['module', $childId,'posts']), 'publishedOn', 'SORT_DESC'); |
||||
$articleIdsStates = helper::arrayCollumn($this->getData(['module', $childId, 'posts']), 'state', 'SORT_DESC'); |
||||
$articleIds = []; |
||||
foreach($articleIdsPublishedOns as $articleId => $articlePublishedOn) { |
||||
if($articlePublishedOn <= time() AND $articleIdsStates[$articleId]) { |
||||
$articleIds[] = $articleId; |
||||
} |
||||
} |
||||
foreach($articleIds as $articleId => $article): ?> |
||||
<?php if($this->getData(['module',$childId,'posts',$article,'state']) === true) {?> |
||||
<li> |
||||
<a href="<?php echo helper::baseUrl() . $childId . '/' . $article;?>"><?php echo $this->getData(['module',$childId,'posts',$article,'title']); ?></a>
|
||||
</li> |
||||
<?php } ?> |
||||
<?php endforeach; |
||||
} ?> |
||||
</ul> |
||||
</li> |
||||
<?php endforeach; ?> |
||||
<!-- ou articles d'un blog--> |
||||
|
||||
<?php if ($this->getData(['page', $parentId, 'moduleId']) === 'blog' && |
||||
!empty($this->getData(['module',$parentId, 'posts' ])) ) { ?> |
||||
<?php |
||||
// Ids des articles par ordre de publication |
||||
$articleIdsPublishedOns = helper::arrayCollumn($this->getData(['module', $parentId,'posts']), 'publishedOn', 'SORT_DESC'); |
||||
$articleIdsStates = helper::arrayCollumn($this->getData(['module', $parentId, 'posts']), 'state', 'SORT_DESC'); |
||||
$articleIds = []; |
||||
foreach($articleIdsPublishedOns as $articleId => $articlePublishedOn) { |
||||
if($articlePublishedOn <= time() AND $articleIdsStates[$articleId]) { |
||||
$articleIds[] = $articleId; |
||||
} |
||||
} |
||||
foreach($articleIds as $articleId => $article): ?> |
||||
<?php if($this->getData(['module',$parentId,'posts',$article,'state']) === true ): ?> |
||||
<li> |
||||
<a href="<?php echo helper::baseUrl() . $parentId. '/' . $article;?>"><?php echo $this->getData(['module',$parentId,'posts',$article,'title']); ?></a>
|
||||
</li> |
||||
<?php endif; ?> |
||||
<?php endforeach; |
||||
} ?> |
||||
</ul> |
||||
</li> |
||||
<?php endforeach; ?> |
||||
</ul> |
||||
<?php |
||||
echo "<div id='siteMap'>"; |
||||
echo $module::$siteMap; |
||||
echo "</div>"; |
||||
|
Loading…
Reference in new issue