mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 14:37:52 +00:00
In Kategorieliste Verbandsorgane hinzugefügt.
This commit is contained in:
@@ -5183,6 +5183,9 @@ function adminKategorien(): void
|
||||
$kategorien[2] = array();
|
||||
$kategorien[3] = array();
|
||||
$kategorien[4] = array();
|
||||
$kategorien[5] = array();
|
||||
$kategorien[6] = array();
|
||||
$kategorien[7] = array();
|
||||
|
||||
foreach ($rows as $row)
|
||||
$kategorien[$row->typ][$row->nummer] = $row->bezeichnung;
|
||||
@@ -5216,12 +5219,12 @@ function adminKategorien(): void
|
||||
$kategorien[4] = array();
|
||||
$kategorien[5] = array();
|
||||
$kategorien[6] = array();
|
||||
|
||||
$kategorien[7] = array();
|
||||
|
||||
foreach ($rows as $row)
|
||||
$kategorien[$row->typ][$row->nummer] = $row->bezeichnung;
|
||||
|
||||
for ($typ = 1; $typ <= 6; $typ++) {
|
||||
for ($typ = 1; $typ <= 7; $typ++) {
|
||||
for ($nummer = 1; $nummer <= 50; $nummer++) {
|
||||
$bezeichnung = $db->escape($jInput->get('bezeichnung_' . $typ . '_' . $nummer, '', 'RAW'));
|
||||
if (empty($bezeichnung)) {
|
||||
@@ -11255,6 +11258,7 @@ function adminBegegnungenExportForm(): void
|
||||
|
||||
// Veranstaltung ermitteln
|
||||
$query = "SELECT * FROM #__sportsmanager_veranstaltung WHERE veranstaltung_id = $veranstaltungId";
|
||||
|
||||
$db->setQuery($query);
|
||||
if (!$db->execute()) {
|
||||
die($db->stderr(true));
|
||||
|
||||
@@ -4891,20 +4891,20 @@ class HTML_sportsmanager_admin
|
||||
static function adminKategorien($kategorien): void
|
||||
{
|
||||
global $params;
|
||||
|
||||
|
||||
?>
|
||||
<div
|
||||
class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CATEGORIES'); ?></div>
|
||||
|
||||
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<div class="uk-overflow-auto">
|
||||
<table class="uk-table" style="width: 100%">
|
||||
<table class="" style="width: 100%">
|
||||
<tr>
|
||||
<td nowrap style="width: 60%; vertical-align: top">
|
||||
<div class="uk-overflow-auto">
|
||||
<table class="uk-table" style="width: 100%">
|
||||
<table class="" style="width: 100%">
|
||||
<?php
|
||||
for ($typ = 1; $typ <= 6; $typ++) {
|
||||
for ($typ = 1; $typ <= 7; $typ++) {
|
||||
?>
|
||||
<tr>
|
||||
<td></td>
|
||||
@@ -4924,6 +4924,8 @@ class HTML_sportsmanager_admin
|
||||
echo Text::_('COM_SPORTSMANAGER_PLAYER_STATISTICS');
|
||||
else if ($typ == 6)
|
||||
echo Text::_('COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS');
|
||||
else if ($typ == 7)
|
||||
echo Text::_('COM_SPORTSMANAGER_ASSOCIATION_BODIES');
|
||||
?>
|
||||
</H2>
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
; Sports Manager (C) 2006-2020, Sven Nickel (Test)
|
||||
; Sports Manager (C) 2006-2020, Sven Nickel (Test)
|
||||
COM_SPORTSMANAGER="Sports Manager"
|
||||
COM_SPORTSMANAGER_PLAYERS="Spieler"
|
||||
COM_SPORTSMANAGER_CLUBS="Vereine"
|
||||
@@ -70,6 +70,7 @@ COM_SPORTSMANAGER_CONFIRM_REMOVE_RANKING="Willst du die Rangliste wirklich entfe
|
||||
COM_SPORTSMANAGER_ADD_INDIVIDUAL_COMPETITION="Individualwettbewerb hinzufügen"
|
||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individualwettbewerb"
|
||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individualwettbewerbe"
|
||||
COM_SPORTSMANAGER_ASSOCIATION_BODIES="Verbandsorgane"
|
||||
COM_SPORTSMANAGER_GAME="Spiel"
|
||||
COM_SPORTSMANAGER_GAMES="Spiele"
|
||||
COM_SPORTSMANAGER_GAMES_SHORTCUT="S"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
; Sports Manager (C) 2006-2020, Sven Nickel
|
||||
; Sports Manager (C) 2006-2020, Sven Nickel
|
||||
COM_SPORTSMANAGER="Sports Manager"
|
||||
COM_SPORTSMANAGER_PLAYERS="Players"
|
||||
COM_SPORTSMANAGER_CLUBS="Clubs"
|
||||
@@ -70,6 +70,7 @@ COM_SPORTSMANAGER_CONFIRM_REMOVE_RANKING="Do you really want to remove the ranki
|
||||
COM_SPORTSMANAGER_ADD_INDIVIDUAL_COMPETITION="Add individual competition"
|
||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individual competition"
|
||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individual competitions"
|
||||
COM_SPORTSMANAGER_ASSOCIATION_BODIES="Association bodies"
|
||||
COM_SPORTSMANAGER_GAME="Game"
|
||||
COM_SPORTSMANAGER_GAMES="Games"
|
||||
COM_SPORTSMANAGER_GAMES_SHORTCUT="G"
|
||||
|
||||
Reference in New Issue
Block a user