misuzu/public/manage/forums.php

17 lines
354 B
PHP

<?php
require_once __DIR__ . '/../../misuzu.php';
switch ($_GET['v'] ?? null) {
default:
case 'listing':
echo 'forum listing here';
break;
case 'permissions':
echo 'permissions here, not even sure what this would do';
break;
case 'settings':
echo 'overall forum settings here';
break;
}