feat: replace Steam Workshop with clean rebuild (no adapters/controllers)

Agent-Logs-Url: https://github.com/GameServerPanel/GSP/sessions/d9a824dc-5568-4604-a1e1-c72ccf240e13

Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-05 12:18:35 +00:00 committed by GitHub
parent 16433fc77b
commit 59bd545ab3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
82 changed files with 2066 additions and 14237 deletions

View file

@ -1,55 +0,0 @@
<?php
/*
*
* OGP - Open Game Panel
* Copyright (C) 2008 - 2018 The OGP Development Team
*
* http://www.opengamepanel.org/
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
require_once __DIR__ . '/lib/SteamWorkshopService.php';
global $db;
$module_buttons = array();
if (isset($server_xml) && isset($server_home['home_id']))
{
$service = new SteamWorkshopService($db);
if ($service->gameSupportsWorkshop($server_xml))
{
$homeId = (int)$server_home['home_id'];
if ($homeId > 0)
{
$label = get_lang('steam_workshop');
if ($label === 'steam_workshop')
{
$label = 'Steam Workshop';
}
$href = "?m=steam_workshop&p=server_mods&action=edit&home_id=" . $homeId;
$module_buttons = array(
"<a class='monitorbutton' href='" . $href . "'>
<img src='" . check_theme_image("images/steam_workshop.png") . "' title='" . $label . "'>
<span>" . $label . "</span>
</a>"
);
}
}
}
?>