$L->g('Manage content'), 'icon'=>'folder')); echo ' '.$L->g('Add new content').''; echo ' '; echo ''; echo ' '; function table($status, $icon='arrow-circle-o-down') { global $Url; global $Language; global $published; global $drafts; global $scheduled; global $static; if ($status=='published') { $list = $published; } elseif ($status=='draft') { $list = $drafts; } elseif ($status=='scheduled') { $list = $scheduled; } elseif ($status=='static') { $list = $static; } if (!empty($list)) { echo ''; } foreach($list as $pageKey=>$fields) { $page = buildPage($pageKey); echo ''; echo ''; echo ''; $friendlyURL = Text::isEmpty($Url->filters('page')) ? '/'.$page->key() : '/'.$Url->filters('page').'/'.$page->key(); echo ''; echo ''; } } if ($Url->pageNumber()==1) { table('draft', 'spinner'); table('scheduled', 'clock-o'); table('static', 'thumb-tack'); } table('published', 'check'); echo '
'.$L->g('Title').''.( (ORDER_BY=='date') ? $L->g('Date') : $L->g('Position') ).''.$L->g('URL').'
'.$Language->g($status).'
' .($page->title()?$page->title():''.$Language->g('Empty title').' ') .' '.( (ORDER_BY=='date') ? $page->dateRaw() : $page->position() ).''.$friendlyURL.'
'; ?>