| 12345678910111213141516171819202122232425 |
- <?php
- /**
- * layouts/sidebar.php
- *
- * Reusable sidebar menu for dashboard pages.
- * Usage: include __DIR__.'/layouts/sidebar.php';
- */
- $sidebarItems = $sidebarItems ?? [
- [ 'href' => '/dashboard/dashboard.php', 'label' => 'Home', 'icon' => 'fas fa-home' ],
- [ 'href' => '/dashboard/crop-analysis/soil-analysis.php', 'label' => 'Soil Analysis', 'icon' => 'fas fa-seedling' ],
- [ 'href' => '/dashboard/crop-analysis/soil-report.php', 'label' => 'Soil Reports', 'icon' => 'fas fa-file-alt' ],
- [ 'href' => '/login/change-password.php', 'label' => 'Account', 'icon' => 'fas fa-user-cog' ],
- ];
- $activeItem = $activeItem ?? '';
- ?>
- <div class="sb-sidenav-menu">
- <div class="nav">
- <?php foreach ($sidebarItems as $item): ?>
- <a class="nav-link<?= ($activeItem === $item['label'] ? ' active' : '') ?>" href="<?= htmlspecialchars($item['href'], ENT_QUOTES, 'UTF-8') ?>">
- <div class="sb-nav-link-icon"><i class="<?= htmlspecialchars($item['icon'], ENT_QUOTES, 'UTF-8') ?>"></i></div>
- <?= htmlspecialchars($item['label'], ENT_QUOTES, 'UTF-8') ?>
- </a>
- <?php endforeach; ?>
- </div>
- </div>
|