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[2] = array();
|
||||||
$kategorien[3] = array();
|
$kategorien[3] = array();
|
||||||
$kategorien[4] = array();
|
$kategorien[4] = array();
|
||||||
|
$kategorien[5] = array();
|
||||||
|
$kategorien[6] = array();
|
||||||
|
$kategorien[7] = array();
|
||||||
|
|
||||||
foreach ($rows as $row)
|
foreach ($rows as $row)
|
||||||
$kategorien[$row->typ][$row->nummer] = $row->bezeichnung;
|
$kategorien[$row->typ][$row->nummer] = $row->bezeichnung;
|
||||||
@@ -5216,12 +5219,12 @@ function adminKategorien(): void
|
|||||||
$kategorien[4] = array();
|
$kategorien[4] = array();
|
||||||
$kategorien[5] = array();
|
$kategorien[5] = array();
|
||||||
$kategorien[6] = array();
|
$kategorien[6] = array();
|
||||||
|
$kategorien[7] = array();
|
||||||
|
|
||||||
foreach ($rows as $row)
|
foreach ($rows as $row)
|
||||||
$kategorien[$row->typ][$row->nummer] = $row->bezeichnung;
|
$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++) {
|
for ($nummer = 1; $nummer <= 50; $nummer++) {
|
||||||
$bezeichnung = $db->escape($jInput->get('bezeichnung_' . $typ . '_' . $nummer, '', 'RAW'));
|
$bezeichnung = $db->escape($jInput->get('bezeichnung_' . $typ . '_' . $nummer, '', 'RAW'));
|
||||||
if (empty($bezeichnung)) {
|
if (empty($bezeichnung)) {
|
||||||
@@ -11255,6 +11258,7 @@ function adminBegegnungenExportForm(): void
|
|||||||
|
|
||||||
// Veranstaltung ermitteln
|
// Veranstaltung ermitteln
|
||||||
$query = "SELECT * FROM #__sportsmanager_veranstaltung WHERE veranstaltung_id = $veranstaltungId";
|
$query = "SELECT * FROM #__sportsmanager_veranstaltung WHERE veranstaltung_id = $veranstaltungId";
|
||||||
|
|
||||||
$db->setQuery($query);
|
$db->setQuery($query);
|
||||||
if (!$db->execute()) {
|
if (!$db->execute()) {
|
||||||
die($db->stderr(true));
|
die($db->stderr(true));
|
||||||
|
|||||||
@@ -4898,13 +4898,13 @@ class HTML_sportsmanager_admin
|
|||||||
|
|
||||||
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
||||||
<div class="uk-overflow-auto">
|
<div class="uk-overflow-auto">
|
||||||
<table class="uk-table" style="width: 100%">
|
<table class="" style="width: 100%">
|
||||||
<tr>
|
<tr>
|
||||||
<td nowrap style="width: 60%; vertical-align: top">
|
<td nowrap style="width: 60%; vertical-align: top">
|
||||||
<div class="uk-overflow-auto">
|
<div class="uk-overflow-auto">
|
||||||
<table class="uk-table" style="width: 100%">
|
<table class="" style="width: 100%">
|
||||||
<?php
|
<?php
|
||||||
for ($typ = 1; $typ <= 6; $typ++) {
|
for ($typ = 1; $typ <= 7; $typ++) {
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td></td>
|
<td></td>
|
||||||
@@ -4924,6 +4924,8 @@ class HTML_sportsmanager_admin
|
|||||||
echo Text::_('COM_SPORTSMANAGER_PLAYER_STATISTICS');
|
echo Text::_('COM_SPORTSMANAGER_PLAYER_STATISTICS');
|
||||||
else if ($typ == 6)
|
else if ($typ == 6)
|
||||||
echo Text::_('COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS');
|
echo Text::_('COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS');
|
||||||
|
else if ($typ == 7)
|
||||||
|
echo Text::_('COM_SPORTSMANAGER_ASSOCIATION_BODIES');
|
||||||
?>
|
?>
|
||||||
</H2>
|
</H2>
|
||||||
</div>
|
</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="Sports Manager"
|
||||||
COM_SPORTSMANAGER_PLAYERS="Spieler"
|
COM_SPORTSMANAGER_PLAYERS="Spieler"
|
||||||
COM_SPORTSMANAGER_CLUBS="Vereine"
|
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_ADD_INDIVIDUAL_COMPETITION="Individualwettbewerb hinzufügen"
|
||||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individualwettbewerb"
|
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individualwettbewerb"
|
||||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individualwettbewerbe"
|
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individualwettbewerbe"
|
||||||
|
COM_SPORTSMANAGER_ASSOCIATION_BODIES="Verbandsorgane"
|
||||||
COM_SPORTSMANAGER_GAME="Spiel"
|
COM_SPORTSMANAGER_GAME="Spiel"
|
||||||
COM_SPORTSMANAGER_GAMES="Spiele"
|
COM_SPORTSMANAGER_GAMES="Spiele"
|
||||||
COM_SPORTSMANAGER_GAMES_SHORTCUT="S"
|
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="Sports Manager"
|
||||||
COM_SPORTSMANAGER_PLAYERS="Players"
|
COM_SPORTSMANAGER_PLAYERS="Players"
|
||||||
COM_SPORTSMANAGER_CLUBS="Clubs"
|
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_ADD_INDIVIDUAL_COMPETITION="Add individual competition"
|
||||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individual competition"
|
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITION="Individual competition"
|
||||||
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individual competitions"
|
COM_SPORTSMANAGER_INDIVIDUAL_COMPETITIONS="Individual competitions"
|
||||||
|
COM_SPORTSMANAGER_ASSOCIATION_BODIES="Association bodies"
|
||||||
COM_SPORTSMANAGER_GAME="Game"
|
COM_SPORTSMANAGER_GAME="Game"
|
||||||
COM_SPORTSMANAGER_GAMES="Games"
|
COM_SPORTSMANAGER_GAMES="Games"
|
||||||
COM_SPORTSMANAGER_GAMES_SHORTCUT="G"
|
COM_SPORTSMANAGER_GAMES_SHORTCUT="G"
|
||||||
|
|||||||
Reference in New Issue
Block a user