'/dashboard/dashboard.php', 'label' => 'Dashboard' ], [ 'href' => '/dashboard/crop-analysis/soil-analysis.php', 'label' => 'Soil Analysis' ], [ 'href' => '/dashboard/crop-analysis/soil-report.php', 'label' => 'Reports' ], [ 'href' => '/login/change-password.php', 'label' => 'Account' ], [ 'href' => '/login/logout.php', 'label' => 'Logout' ], ]; $sidebarItems = [ [ 'href' => '/dashboard/dashboard.php', 'label' => 'Home', 'icon' => 'fas fa-home' ], [ 'label' => 'Soil Analysis', 'icon' => 'fas fa-seedling', 'children' => [ [ 'href' => '/dashboard/crop-analysis/soil-test-data.php', 'label' => 'New Test' ], [ 'href' => '/dashboard/crop-analysis/soil-analysis.php', 'label' => 'View Results' ], [ 'href' => '/dashboard/crop-analysis/soil-report.php', 'label' => 'Reports' ], ] ], [ 'href' => '/dashboard/inbox.php', 'label' => 'Inbox', 'icon' => 'fas fa-inbox' ], [ 'href' => '/dashboard/planning-calendar.php', 'label' => 'Calendar', 'icon' => 'fas fa-calendar' ], [ 'href' => '/login/change-password.php', 'label' => 'Account', 'icon' => 'fas fa-user-cog' ], ]; } else { // Guest navigation $navItems = [ [ 'href' => '/', 'label' => 'Home' ], [ 'href' => '/login/login.php', 'label' => 'Login' ], [ 'href' => '/login/register.php', 'label' => 'Register' ], ]; $sidebarItems = []; // No sidebar for guests } // Determine active item based on current URL $currentPath = parse_url($_SERVER['REQUEST_URI'] ?? '', PHP_URL_PATH) ?? ''; $activeItem = ''; foreach ($navItems as $item) { if ($item['href'] === $currentPath) { $activeItem = $item['label']; break; } } // Function to render navbar function renderNavbar() { global $siteName, $navItems, $activeItem; ?>