register_hook('ACTION_ACT_PREPROCESS', 'BEFORE', $this, 'redirectToTodayPage'); } public function redirectToTodayPage(Event $event, ?array $param): void { if ($event->data === 'today') { global $INPUT; $namespace = $INPUT->has('namespace') ? $INPUT->str('namespace') : ''; $format = $INPUT->has('format') ? $INPUT->str('format') : 'Y-m-d'; $today = date($format); send_redirect(wl("{$namespace}:{$today}")); } } }