17 lines
278 B
PHP
17 lines
278 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use MintyPHP\Support\Guard;
|
||
|
|
use MintyPHP\Buffer;
|
||
|
|
|
||
|
|
Guard::requireLogin();
|
||
|
|
|
||
|
|
$slug = trim((string) ($slug ?? ''));
|
||
|
|
if ($slug === '') {
|
||
|
|
require __DIR__ . '/index().php';
|
||
|
|
return;
|
||
|
|
}
|
||
|
|
|
||
|
|
http_response_code(404);
|
||
|
|
Buffer::set('title', t('Page not found'));
|
||
|
|
$notFound = true;
|