BROOKO icon
BROOKO UK NETWORK
Where code meets creativity & adventure
File viewer

trutrak_nav.php

Type
php
Size
378 B
Modified
15 May
trutrak_nav.php 378 B
<?php
// TruTrak tab navigation
$uri = app_request_path();
$items = [
  '/trutrak/map' => 'Map',
];
?>
<div class="header-nav">
  <?php foreach ($items as $href => $label):
    $active = (strpos($uri, $href) === 0);
  ?>
    <a class="header-nav-item <?= $active ? 'active' : '' ?>" href="<?= e(app_url(ltrim($href, '/'))) ?>"><?= e($label) ?></a>
  <?php endforeach; ?>
</div>