aboutsummaryrefslogtreecommitdiff
path: root/app/views/components/navigator.link.php
blob: a129acfa608a8d4bdf8f0c21974c897d9d8387ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<a href="<?php echo $route ?? null; ?>" class="navbar-item navbar__icon has-text-centered
  <?php

    $hiddenLabels = [ 'Profile' ];
    if (in_array($label, $hiddenLabels)) { echo ' navbar__icon__hidden'; }

    echo $check = ($label === 'Home')
      ? ($navigation->isActiveHome() ? ' navbar__active' : '')
      : ($navigation->isActive($route ?? null) ? ' navbar__active' : '');
  ?>
">
  <div class="has-text-centered">
    <?php echo icon($icon ?? null); ?>
    <p title="<?php echo $label ?? null; ?>" class="navbar__icon__label"><?php echo $label ?? null; ?></p>
  </div>
</a>

<?php $route = $label = $icon = null; ?>