Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/3fc88263-c1c0-46f6-95f1-7070fc6f9d02 Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
13 lines
281 B
PHP
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();
|
|
}
|