misuzu/public/manage/index.php

27 lines
487 B
PHP
Raw Normal View History

2018-03-28 00:35:37 +00:00
<?php
require_once __DIR__ . '/../../misuzu.php';
$templating = $app->getTemplating();
switch ($_GET['v'] ?? null) {
case 'overview':
echo $templating->render('@manage.general.overview');
break;
case 'logs':
echo 'soon';
break;
case 'emoticons':
echo 'soon as well';
break;
case 'settings':
echo 'somewhat soon i guess';
break;
case null:
header('Location: ?v=overview');
break;
}