This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/system/main.php

26 lines
695 B
PHP

<?php
declare(strict_types=1);
namespace Shimmie2;
class System extends Extension
{
public function onPageRequest(PageRequestEvent $event): void
{
global $page;
if ($event->page_matches("system")) {
$e = send_event(new PageSubNavBuildingEvent("system"));
usort($e->links, fn (NavLink $a, NavLink $b) => $a->order - $b->order);
$link = $e->links[0]->link;
$page->set_redirect($link->make_link());
$page->set_mode(PageMode::REDIRECT);
}
}
public function onPageNavBuilding(PageNavBuildingEvent $event): void
{
$event->add_nav_link("system", new Link('system'), "System");
}
}