html .= ''; } private function navMainHTML(Page $nav_data, array $current): string { $nav_html = ''; static $level = 0; foreach($nav_data->getChildren() as $data) { if(!$data->isHidden()){ $li_class = ''; if(isset($current[$level]) && $data->getEndOfPath() === $current[$level]->getEndOfPath()){ $li_class = 'current '; } $link = ''; if($data->isReachable()) // titre de catégorie du menu non clicable { if(str_starts_with($data->getEndOfPath(), 'http')) // lien vers autre site { $link .= ''; } elseif($data->getEndOfPath() != '') // lien relatif { $link .= ''; } } else{ $link .= ''; } if(count($data->getChildren()) > 0) // titre de catégorie { $li_class .= $data->getParent() == null ? 'drop-down' : 'drop-right'; $nav_html .= '
  • ' . $link . '

    ' . $data->getPageName() . '

  • ' . "\n"; } else { $nav_html .= '
  • ' . $link . '

    ' . $data->getPageName() . '

  • ' . "\n"; } } } return $nav_html; } }