forked from Public/pics
Introduce new menu classes and navigation templates
This commit is contained in:
51
templates/MainNavBar.php
Normal file
51
templates/MainNavBar.php
Normal file
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/*****************************************************************************
|
||||
* MainNavBar.php
|
||||
* Contains the primary navigational menu template.
|
||||
*
|
||||
* Global Data Lab code (C) Radboud University Nijmegen
|
||||
* Programming (C) Aaron van Geffen, 2015-2022
|
||||
*****************************************************************************/
|
||||
|
||||
class MainNavBar extends NavBar
|
||||
{
|
||||
protected $outerMenuId = 'mainNav';
|
||||
protected $innerMenuId = 'mainNavigation';
|
||||
protected $ariaLabel = 'Main navigation';
|
||||
protected $navBarClasses = 'navbar-dark bg-dark sticky-top mb-4';
|
||||
protected $primaryBadgeClasses = 'bg-light text-dark';
|
||||
protected $secondaryBadgeClasses = 'bg-dark text-light';
|
||||
|
||||
public function html_main()
|
||||
{
|
||||
echo '
|
||||
<nav id="', $this->outerMenuId, '" class="navbar navbar-expand-lg ', $this->navBarClasses, '" aria-label="', $this->ariaLabel, '">
|
||||
<div class="container">
|
||||
<a class="navbar-brand flex-grow-1" href="', BASEURL, '/">
|
||||
HashRU Pics
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#', $this->innerMenuId, '" aria-controls="', $this->innerMenuId, '" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse justify-content-end" id="', $this->innerMenuId, '">
|
||||
<ul class="navbar-nav mb-2 mb-lg-0">';
|
||||
|
||||
$mainMenu = new MainMenu();
|
||||
$this->renderMenuItems($mainMenu->getItems());
|
||||
|
||||
echo '
|
||||
<li class="nav-divider d-none d-lg-inline"></li>';
|
||||
|
||||
$adminMenu = new AdminMenu();
|
||||
$this->renderMenuItems($adminMenu->getItems());
|
||||
|
||||
$userMenu = new UserMenu();
|
||||
$this->renderMenuItems($userMenu->getItems());
|
||||
|
||||
echo '
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user