2017-05-16 00:46:20 +02:00
|
|
|
<?php
|
|
|
|
|
2017-10-02 22:42:18 +02:00
|
|
|
HTML::title(array('title'=>$L->g('Manage content'), 'icon'=>'folder'));
|
2017-05-16 00:46:20 +02:00
|
|
|
|
2017-10-02 22:42:18 +02:00
|
|
|
echo '<a href="'.HTML_PATH_ADMIN_ROOT.'new-content"><i class="uk-icon-plus"></i> '.$L->g('Add new content').'</a>';
|
2017-05-16 00:46:20 +02:00
|
|
|
|
|
|
|
echo '
|
|
|
|
<table class="uk-table uk-table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>'.$L->g('Title').'</th>
|
2017-06-09 20:30:13 +02:00
|
|
|
';
|
|
|
|
|
|
|
|
echo '<th class="uk-text-center">'.( (ORDER_BY=='date') ? $L->g('Date') : $L->g('Position') ).'</th>';
|
|
|
|
|
|
|
|
echo '
|
2017-05-16 00:46:20 +02:00
|
|
|
<th>'.$L->g('URL').'</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
';
|
|
|
|
|
2017-08-02 01:11:57 +02:00
|
|
|
function table($status, $icon='arrow-circle-o-down') {
|
|
|
|
global $Url;
|
2017-08-06 17:27:30 +02:00
|
|
|
global $Language;
|
2017-09-10 23:09:44 +02:00
|
|
|
global $published;
|
|
|
|
global $drafts;
|
|
|
|
global $scheduled;
|
2017-09-20 23:00:03 +02:00
|
|
|
global $static;
|
2017-08-06 17:27:30 +02:00
|
|
|
|
2017-09-10 23:09:44 +02:00
|
|
|
if ($status=='published') {
|
|
|
|
$list = $published;
|
|
|
|
} elseif ($status=='draft') {
|
|
|
|
$list = $drafts;
|
|
|
|
} elseif ($status=='scheduled') {
|
|
|
|
$list = $scheduled;
|
2017-09-20 23:00:03 +02:00
|
|
|
} elseif ($status=='static') {
|
|
|
|
$list = $static;
|
2017-09-10 23:09:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($list)) {
|
|
|
|
echo '<tr>
|
2017-09-24 01:17:37 +02:00
|
|
|
<td style="color: #aaa; font-size: 0.9em; text-transform: uppercase;"><i class="fa fa-'.$icon.'" aria-hidden="true"></i> '.$Language->g($status).'</td>
|
2017-09-10 23:09:44 +02:00
|
|
|
<td></td>
|
|
|
|
<td></td>
|
|
|
|
</tr>';
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($list as $pageKey=>$fields) {
|
|
|
|
$page = buildPage($pageKey);
|
|
|
|
echo '<tr>';
|
|
|
|
echo '<td>
|
2017-10-02 22:42:18 +02:00
|
|
|
<a href="'.HTML_PATH_ADMIN_ROOT.'edit-content/'.$page->key().'">'
|
2017-09-10 23:09:44 +02:00
|
|
|
.($page->title()?$page->title():'<span class="label-empty-title">'.$Language->g('Empty title').'</span> ')
|
|
|
|
.'</a>
|
|
|
|
</td>';
|
|
|
|
|
|
|
|
echo '<td class="uk-text-center">'.( (ORDER_BY=='date') ? $page->dateRaw() : $page->position() ).'</td>';
|
|
|
|
|
|
|
|
$friendlyURL = Text::isEmpty($Url->filters('page')) ? '/'.$page->key() : '/'.$Url->filters('page').'/'.$page->key();
|
|
|
|
echo '<td><a target="_blank" href="'.$page->permalink().'">'.$friendlyURL.'</a></td>';
|
|
|
|
echo '</tr>';
|
2017-08-02 01:11:57 +02:00
|
|
|
}
|
2017-05-16 00:46:20 +02:00
|
|
|
}
|
|
|
|
|
2017-09-10 23:09:44 +02:00
|
|
|
if ($Url->pageNumber()==1) {
|
|
|
|
table('draft', 'spinner');
|
|
|
|
table('scheduled', 'clock-o');
|
2017-09-20 23:00:03 +02:00
|
|
|
table('static', 'thumb-tack');
|
2017-09-10 23:09:44 +02:00
|
|
|
}
|
2017-08-02 01:11:57 +02:00
|
|
|
table('published', 'check');
|
|
|
|
|
2017-05-16 00:46:20 +02:00
|
|
|
echo '
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-07-07 23:38:01 +02:00
|
|
|
';
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!-- Paginator -->
|
|
|
|
<div id="paginator">
|
|
|
|
<ul>
|
|
|
|
<?php
|
|
|
|
// Show previus page link
|
|
|
|
if(Paginator::showPrev()) {
|
2017-10-08 20:33:21 +02:00
|
|
|
echo '<li><a href="'.Paginator::prevPageUrl().'" class="previous"><i class="fa fa-arrow-circle-o-left"></i> '.$Language->g('Previous').'</a></li>';
|
2017-09-04 23:09:45 +02:00
|
|
|
} else {
|
2017-10-06 18:28:06 +02:00
|
|
|
echo '<li class="disabled"><i class="fa fa-arrow-circle-o-left"></i> '.$Language->g('Previous').'</li>';
|
2017-07-07 23:38:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for($i=1; $i<=Paginator::amountOfPages(); $i++) {
|
2017-07-30 23:15:33 +02:00
|
|
|
echo '<li><a href="'.Paginator::numberUrl($i).'" class="page">'.$i.'</a></li>';
|
2017-07-07 23:38:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Show next page link
|
|
|
|
if(Paginator::showNext()) {
|
2017-10-06 18:28:06 +02:00
|
|
|
echo '<li><a href="'.Paginator::nextPageUrl().'" class="next">'.$Language->g('Next').' <i class="fa fa-arrow-circle-o-right"></i></a></li>';
|
2017-09-04 23:09:45 +02:00
|
|
|
} else {
|
2017-10-08 20:33:21 +02:00
|
|
|
echo '<li class="disabled">'.$Language->g('Next').' <i class="fa fa-arrow-circle-o-right"></i></li>';
|
2017-07-07 23:38:01 +02:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
2017-09-04 23:09:45 +02:00
|
|
|
</div>
|