Panel/modules/steam_workshop/workshop_admin.php
copilot-swe-agent[bot] 86f825e388
feat: rewrite workshop_admin UI – remove adapter terminology, make configurations primary
Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/3fc88263-c1c0-46f6-95f1-7070fc6f9d02

Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
2026-05-04 16:56:38 +00:00

13 lines
281 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/controllers/WorkshopProfileController.php';
function exec_ogp_module(): void
{
global $db;
echo '<h2>' . get_lang('steam_workshop') . '</h2>';
$controller = new WorkshopProfileController($db);
$controller->handle();
}