';
$out .= '';
// TODO: render DSC categories
$out .= '
Content forthcoming.
';
$out .= '
';
return $out;
}
// ---------------------------------------------------------------------------
// CONFIG
// ---------------------------------------------------------------------------
function dsc01_load_config() {
$path = 'addon/dsc01/config.json';
$raw = @file_get_contents($path);
if ($raw === false) return [];
$data = json_decode($raw, true);
return (json_last_error() === JSON_ERROR_NONE) ? $data : [];
}
// ---------------------------------------------------------------------------
// CSRF
// ---------------------------------------------------------------------------
function dsc01_csrf_token() {
if (empty($_SESSION['dsc01_csrf'])) {
$_SESSION['dsc01_csrf'] = bin2hex(random_bytes(16));
}
return '