mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- update CI4 to v4.1.9's stable production package - update php and js dependencies to latest
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* @copyright 2020 Ad Aures
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
* @link https://castopod.org/
|
|
*/
|
|
|
|
use App\Models\PageModel;
|
|
|
|
if (! function_exists('render_page_links')) {
|
|
/**
|
|
* Returns instance pages as links inside nav tag
|
|
*
|
|
* @return string html pages navigation
|
|
*/
|
|
function render_page_links(string $class = null): string
|
|
{
|
|
$pages = (new PageModel())->findAll();
|
|
$links = anchor(route_to('home'), lang('Common.home'), [
|
|
'class' => 'px-2 py-1 underline hover:no-underline focus:ring-accent',
|
|
]);
|
|
$links .= anchor(route_to('credits'), lang('Person.credits'), [
|
|
'class' => 'px-2 py-1 underline hover:no-underline focus:ring-accent',
|
|
]);
|
|
$links .= anchor(route_to('map'), lang('Page.map.title'), [
|
|
'class' => 'px-2 py-1 underline hover:no-underline focus:ring-accent',
|
|
]);
|
|
foreach ($pages as $page) {
|
|
$links .= anchor($page->link, esc($page->title), [
|
|
'class' => 'px-2 py-1 underline hover:no-underline focus:ring-accent',
|
|
]);
|
|
}
|
|
|
|
return '<nav class="' . $class . '">' . $links . '</nav>';
|
|
}
|
|
}
|