2015-05-05 03:00:01 +02:00
|
|
|
<h2 class="title"><i class="fa fa-file-text-o"></i> Manage Pages</h2>
|
|
|
|
|
|
|
|
<?php makeNavbar('manage'); ?>
|
|
|
|
|
|
|
|
<table class="table-bordered table-stripped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Parent</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
|
|
|
|
foreach($pagesParents as $parentKey=>$pageList)
|
|
|
|
{
|
|
|
|
foreach($pageList as $Page)
|
|
|
|
{
|
|
|
|
if($parentKey!==NO_PARENT_CHAR) {
|
|
|
|
$parentTitle = $pages[$Page->parentKey()]->title();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$parentTitle = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
echo '<tr>';
|
2015-05-15 00:07:45 +02:00
|
|
|
echo '<td>'.($Page->parentKey()?NO_PARENT_CHAR:'').'<a href="'.HTML_PATH_ADMIN_ROOT.'edit-page/'.$Page->key().'">'.($Page->published()?'':'[DRAFT] ').$Page->title().'</a></td>';
|
2015-05-05 03:00:01 +02:00
|
|
|
echo '<td>'.$parentTitle.'</td>';
|
|
|
|
echo '</tr>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|
|
</tbody>
|
2015-05-31 03:06:55 +02:00
|
|
|
</table>
|