Fixed up css

This commit is contained in:
genuineparts 2025-06-24 21:25:19 +02:00
parent 2ea54af6f7
commit 1fef0be197
8 changed files with 99 additions and 99 deletions

View file

@ -65,13 +65,13 @@ class module_panel extends admin_module{
$panel->title="Modulverwaltung";
$panel->content.="<h2>Installierte Module</h2><br />
<table width=\"90%\" cellspacing=\"2\">
<table style=\"width: 90%; border-spacing: 2px;\">
<tr>
<th style=\"text-align='center';\">Modul</th>
<th style=\"text-align='center';\">Version</th>
<th style=\"text-align='center';\">Autor</th>
<th style=\"text-align='center';\">Homepage</th>
<th style=\"text-align='center';\">Aktion</th>
<th style=\"text-align: center;\">Modul</th>
<th style=\"text-align: center;\">Version</th>
<th style=\"text-align: center;\">Autor</th>
<th style=\"text-align: center;\">Homepage</th>
<th style=\"text-align: center;\">Aktion</th>
</tr>";
if(!empty($core->mod_)){
foreach($core->mod_ as $mod){
@ -88,11 +88,11 @@ class module_panel extends admin_module{
$depends.='<br /><span style="font-size: xx-small;">h&auml;ngt ab von: '.$deps;
}
$panel->content.="<tr>
<td style=\"text-align='center';\">".$mod["name"].$depends."</td>
<td style=\"text-align='center';\">".$mod["version"]."</td>
<td style=\"text-align='center';\">".$mod["author"]."</td>
<td style=\"text-align='center';\"><a href=\"".$mod["url"]."\">".$mod["url"]."</a></td>
<td style=\"text-align='center';\"><a onclick=\"return confirmLink(this, 'Willst du wirklich das Modul ".$mod["name"]." deinstallieren? Alle Daten diese Plugins werden gel&ouml;scht!')\" href=\"".$config["path"]."/admin/index.php?panel=module&amp;action=uninstall&amp;module=".$mod["file"]."\">Deinstallieren</a></td>
<td style=\"text-align: center;\">".$mod["name"].$depends."</td>
<td style=\"text-align: center;\">".$mod["version"]."</td>
<td style=\"text-align: center;\">".$mod["author"]."</td>
<td style=\"text-align: center;\"><a href=\"".$mod["url"]."\">".$mod["url"]."</a></td>
<td style=\"text-align: center;\"><a onclick=\"return confirmLink(this, 'Willst du wirklich das Modul ".$mod["name"]." deinstallieren? Alle Daten diese Plugins werden gel&ouml;scht!')\" href=\"".$config["path"]."/admin/index.php?panel=module&amp;action=uninstall&amp;module=".$mod["file"]."\">Deinstallieren</a></td>
</tr>";
unset($deps);
unset($depends);
@ -100,19 +100,19 @@ class module_panel extends admin_module{
}
}else{
$panel->content.="<tr>
<td align=\"center\" colspan=\"5\">Keine Module verf&uuml;gbar.</td>
<td style=\"text-align: center;\" colspan=\"5\">Keine Module verf&uuml;gbar.</td>
</tr>";
}
$panel->content.="</table><br />";
$panel->content.="<h2>Nicht Installierte Module</h2><br />";
$panel->content.="<table width=\"90%\" cellspacing=\"2\">
$panel->content.="<table style=\"width: 90%; border-spacing: 2px;\">
<tr>
<th style=\"text-align='center';\">Modul</th>
<th style=\"text-align='center';\">Version</th>
<th style=\"text-align='center';\">Autor</th>
<th style=\"text-align='center';\">Homepage</th>
<th style=\"text-align='center';\">Aktion</th>
<th style=\"text-align: center;\">Modul</th>
<th style=\"text-align: center;\">Version</th>
<th style=\"text-align: center;\">Autor</th>
<th style=\"text-align: center;\">Homepage</th>
<th style=\"text-align: center;\">Aktion</th>
</tr>";
$modules=$this->avaiable_modules();
@ -131,11 +131,11 @@ class module_panel extends admin_module{
$depends.='<br /><span style="font-size: xx-small;">h&auml;ngt ab von: '.$deps;
}
$panel->content.="<tr>
<td style=\"text-align='center';\">".$mod["name"].$depends."</td>
<td style=\"text-align='center';\">".$mod["version"]."</td>
<td style=\"text-align='center';\">".$mod["author"]."</td>
<td style=\"text-align='center';\"><a href=\"".$mod["url"]."\">".$mod["url"]."</a></td>
<td style=\"text-align='center';\"><a href=\"".$config["path"]."/admin/index.php?panel=module&amp;action=install&amp;module=".$mod["file"]."\">Installieren</a></td>
<td style=\"text-align: center;\">".$mod["name"].$depends."</td>
<td style=\"text-align: center;\">".$mod["version"]."</td>
<td style=\"text-align: center;\">".$mod["author"]."</td>
<td style=\"text-align: center;\"><a href=\"".$mod["url"]."\">".$mod["url"]."</a></td>
<td style=\"text-align: center;\"><a href=\"".$config["path"]."/admin/index.php?panel=module&amp;action=install&amp;module=".$mod["file"]."\">Installieren</a></td>
</tr>";
unset($deps);
unset($depends);
@ -143,7 +143,7 @@ class module_panel extends admin_module{
}
}else{
$panel->content.="<tr>
<td align=\"center\" colspan=\"5\">Keine Module verf&uuml;gbar.</td>
<td style=\"text-align: center;\" colspan=\"5\">Keine Module verf&uuml;gbar.</td>
</tr>";
}
$panel->content.="</table>";