Replace nav links with NavLinks class

This commit is contained in:
Ryan Prather 2024-12-02 23:59:20 -05:00
parent 6c9e67e078
commit 920887f3f9

View File

@ -3,6 +3,7 @@
namespace App\Controller; namespace App\Controller;
use App\Entity\User; use App\Entity\User;
use App\Libs\NavList;
use Doctrine\ORM\EntityManagerInterface; use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
@ -17,13 +18,7 @@ class StaffController extends AbstractController
private readonly UserPasswordHasherInterface $userPasswordHasher, private readonly UserPasswordHasherInterface $userPasswordHasher,
private array $navLinks = [] private array $navLinks = []
) { ) {
$this->navLinks = [ $this->navLinks = NavList::LIST;
'admin_dashboard' => 'nav-link text-dark',
'user_dashboard' => 'nav-link text-dark',
'profile' => 'nav-link text-dark',
'user_list' => 'nav-link text-dark',
'staff_dashboard' => 'nav-link text-dark',
];
} }
#[Route('/staff-dashboard', name: 'staff')] #[Route('/staff-dashboard', name: 'staff')]