New bootstrap-based layout #30

Merged
Roflin merged 79 commits from bootstrap into master 2023-03-14 19:11:25 +01:00
Showing only changes of commit 3cf281b24d - Show all commits

View File

@ -15,9 +15,10 @@ class AdminMenu extends Menu
if (!$user->isAdmin())
return;
$this->items[] = [
$this->items[0] = [
'label' => 'Admin',
'icon' => 'gear',
'badge' => ErrorLog::getCount(),
'subs' => [
[
'uri' => '/managealbums/',
@ -43,6 +44,9 @@ class AdminMenu extends Menu
],
];
if ($this->items[0]['badge'] == 0)
unset($this->items[0]['badge']);
foreach ($this->items as $i => $item)
{
if (isset($item['uri']))