|
|
|
@@ -16,145 +16,156 @@ class HTML_sportsmanager_admin
|
|
|
|
|
{
|
|
|
|
|
static function adminUebersicht($veranstaltungen, $spielerstatistiken, $turniere, $ranglisten, $individualwettbewerbe, $statistik, $saisons, $filter_saison_id, $externe_datenbank): void
|
|
|
|
|
{
|
|
|
|
|
global $params;
|
|
|
|
|
function checkZeilenumbruch($Spalte_Nr, $max_Spalten)
|
|
|
|
|
{
|
|
|
|
|
$Spalte_Nr++;
|
|
|
|
|
if ($Spalte_Nr >= $max_Spalten){
|
|
|
|
|
echo "</tr>\n<tr>\n";
|
|
|
|
|
$Spalte_Nr = 0;
|
|
|
|
|
}
|
|
|
|
|
return $Spalte_Nr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
global $params;
|
|
|
|
|
?>
|
|
|
|
|
<div class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><a
|
|
|
|
|
href="https://github.com/Deutscher-Tischfussballbund/" target="_blank">Sports
|
|
|
|
|
Manager <?php echo SPORTS_MANAGER_VERSION; ?> </a>
|
|
|
|
|
<div class="componentheading<?php echo $params->get('pageclass_sfx'); ?>" style='font-weight: bold;'>
|
|
|
|
|
<a href="https://github.com/Deutscher-Tischfussballbund/" target="_blank">
|
|
|
|
|
Sports Manager <?php echo SPORTS_MANAGER_VERSION; ?> </a>
|
|
|
|
|
</div>
|
|
|
|
|
<table style="border-spacing: 10px">
|
|
|
|
|
<?php
|
|
|
|
|
if (benutzerZugriff("spieler_aendern")
|
|
|
|
|
|| benutzerVeranstalterModerator()
|
|
|
|
|
|| benutzerVereinModerator()
|
|
|
|
|
|| benutzerZugriff("vereine_aendern")
|
|
|
|
|
|| benutzerZugriff("organisationen_aendern")
|
|
|
|
|
|| benutzerZugriff("kategorien_aendern")
|
|
|
|
|
|| benutzerZugriff("moderatoren_aendern")
|
|
|
|
|
|| benutzerZugriff("einstufungen_aendern")
|
|
|
|
|
|| benutzerZugriff("basiseinstellungen_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<table>
|
|
|
|
|
<tr>
|
|
|
|
|
<?php
|
|
|
|
|
$max_Spalten = 6;
|
|
|
|
|
$Spalte_Nr = 0;
|
|
|
|
|
if (benutzerZugriff("spieler_aendern") || benutzerVeranstalterModerator() || benutzerVereinModerator()) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_spieler'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_PLAYERS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_spieler'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_PLAYERS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("vereine_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_vereine'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CLUBS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_vereine'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CLUBS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("organisationen_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_veranstalter'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_ORGANISATIONS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_veranstalter'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_ORGANISATIONS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("kategorien_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_kategorien'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CATEGORIES'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_kategorien'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CATEGORIES'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("moderatoren_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_moderatoren'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_MODERATORS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_moderatoren'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_MODERATORS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("einstufungen_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_einstufungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CLASSIFICATIONS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_einstufungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_CLASSIFICATIONS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("basiseinstellungen_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_einstellungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_SETTINGS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_datenbank'); ?>"><?php echo $externe_datenbank ? Text::_('COM_SPORTSMANAGER_DATABASE_EXTERNAL') : Text::_('COM_SPORTSMANAGER_DATABASE_LOCAL'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_einstellungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_SETTINGS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
?>
|
|
|
|
|
</tr>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_datenbank'); ?>"><?php echo $externe_datenbank ? Text::_('COM_SPORTSMANAGER_DATABASE_EXTERNAL') : Text::_('COM_SPORTSMANAGER_DATABASE_LOCAL'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
<tr>
|
|
|
|
|
<?php
|
|
|
|
|
if (benutzerZugriff("termine_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_termine'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_APPOINTMENTS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_termine'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_APPOINTMENTS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("verteiler_aendern") || benutzerZugriff("verteiler_lesen")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_verteiler'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_MAILING_LISTS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_verteiler'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_MAILING_LISTS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("rechnungen_aendern") && $statistik["saisons"] > 0) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_rechnungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_INVOICES'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_rechnungen'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_INVOICES'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("spielorte_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_spielorte'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_LOCATIONS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_spielorte'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_LOCATIONS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("saisons_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_saisons'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_SEASONS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_saisons'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_SEASONS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("mannschaftsspielplaene_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_teamspiel_modi'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_TEAM_PLANS'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_teamspiel_modi'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_TEAM_PLANS'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("verschieberegeln_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_verschieben_modi'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_POSTPONE_RULES'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_verschieben_modi'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_POSTPONE_RULES'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
if (benutzerZugriff("ranglistenwertungen_aendern")) {
|
|
|
|
|
?>
|
|
|
|
|
<td nowrap><a
|
|
|
|
|
href="<?php echo SportsManagerURL('&task=admin_ranglistensysteme'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_RANKING_RATING'); ?></a>
|
|
|
|
|
<td style="padding-right: 15px" nowrap>
|
|
|
|
|
<a href="<?php echo SportsManagerURL('&task=admin_ranglistensysteme'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_RANKING_RATING'); ?></a>
|
|
|
|
|
</td>
|
|
|
|
|
<?php
|
|
|
|
|
$Spalte_Nr = checkZeilenumbruch($Spalte_Nr, $max_Spalten);
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</table><br>
|
|
|
|
|
<?php
|
|
|
|
|
if (count($saisons) > 0) {
|
|
|
|
|
?>
|
|
|
|
@@ -4898,13 +4909,13 @@ class HTML_sportsmanager_admin
|
|
|
|
|
|
|
|
|
|
<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 +4935,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>
|
|
|
|
@@ -6922,11 +6935,11 @@ class HTML_sportsmanager_admin
|
|
|
|
|
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm"
|
|
|
|
|
enctype="multipart/form-data">
|
|
|
|
|
<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%">
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 20%; text-align: right">
|
|
|
|
|
<label
|
|
|
|
@@ -6961,7 +6974,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
:</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<select class="uk-select uk-form-width-medium" name="kategorie"
|
|
|
|
|
<select class="uk-select uk-form-width-medium" style='width: 350px;' name="kategorie"
|
|
|
|
|
id="category" size="1">
|
|
|
|
|
<?php
|
|
|
|
|
for ($i = 1; $i <= 50; $i++) {
|
|
|
|
@@ -7132,7 +7145,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
:</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<select class="uk-select uk-form-width-medium" name="tabellenwertung"
|
|
|
|
|
<select class="uk-select uk-form-width-large" style='width: 600px;' name="tabellenwertung"
|
|
|
|
|
id="table_evaluation" size="1">
|
|
|
|
|
<?php
|
|
|
|
|
$typ = array(
|
|
|
|
@@ -7249,7 +7262,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
</table><br/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
@@ -7264,13 +7277,13 @@ class HTML_sportsmanager_admin
|
|
|
|
|
?>
|
|
|
|
|
<input type="radio" name="bildbeibehalten_logo" id="keep_logo" value="1"
|
|
|
|
|
checked><?php echo Text::_('COM_SPORTSMANAGER_NEWS_IMAGE'); ?>
|
|
|
|
|
<br/><br/><?php echo $bild; ?>
|
|
|
|
|
<br/><br/><label><input type="radio" name="bildbeibehalten_logo"
|
|
|
|
|
<br/><?php echo $bild; ?>
|
|
|
|
|
<br/><label><input type="radio" name="bildbeibehalten_logo"
|
|
|
|
|
value="0"><?php echo Text::_('COM_SPORTSMANAGER_NEW_IMAGE'); ?>
|
|
|
|
|
</label>
|
|
|
|
|
<br/><br/><input type="file" name="bild_logo" size="30"
|
|
|
|
|
<br/><input type="file" name="bild_logo" size="30"
|
|
|
|
|
onchange="document.adminForm.bildbeibehalten_logo[1].checked = true;"/>
|
|
|
|
|
<br/><br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
<br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
name="logo_url" size="50"
|
|
|
|
|
maxlength="150"
|
|
|
|
|
value="<?php if (!empty($row)) echo htmlentities_utf8($row->logo_url); ?>"/></label>
|
|
|
|
@@ -7279,13 +7292,13 @@ class HTML_sportsmanager_admin
|
|
|
|
|
?>
|
|
|
|
|
<label
|
|
|
|
|
for="logo_url"><?php echo Text::_('COM_SPORTSMANAGER_NEW_IMAGE'); ?></label>
|
|
|
|
|
<br/><br/><input type="file" name="bild_logo" size="30"/>
|
|
|
|
|
<br/><br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
<br/><input type="file" name="bild_logo" size="30"/>
|
|
|
|
|
<br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
name="logo_url" id="logo_url" size="50"
|
|
|
|
|
maxlength="150"/></label>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
?><br/><br/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
@@ -7301,13 +7314,13 @@ class HTML_sportsmanager_admin
|
|
|
|
|
<input type="radio" name="bildbeibehalten_ticker_logo"
|
|
|
|
|
id="keep_ticker_logo" value="1"
|
|
|
|
|
checked><?php echo Text::_('COM_SPORTSMANAGER_NEWS_IMAGE'); ?>
|
|
|
|
|
<br/><br/><?php echo $bild; ?>
|
|
|
|
|
<br/><br/><label><input type="radio" name="bildbeibehalten_ticker_logo"
|
|
|
|
|
<br/><?php echo $bild; ?>
|
|
|
|
|
<br/><label><input type="radio" name="bildbeibehalten_ticker_logo"
|
|
|
|
|
value="0"><?php echo Text::_('COM_SPORTSMANAGER_NEW_IMAGE'); ?>
|
|
|
|
|
</label>
|
|
|
|
|
<br/><br/><input type="file" name="bild_ticker_logo" size="30"
|
|
|
|
|
<br/><input type="file" name="bild_ticker_logo" size="30"
|
|
|
|
|
onchange="document.adminForm.bildbeibehalten_ticker_logo[1].checked = true;"/>
|
|
|
|
|
<br/><br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
<br/><label>URL: <input class="inputbox" type="text"
|
|
|
|
|
name="ticker_logo_url"
|
|
|
|
|
size="50" maxlength="150"
|
|
|
|
|
value="<?php if (!empty($row)) echo htmlentities_utf8($row->ticker_logo_url); ?>"/></label>
|
|
|
|
@@ -7316,8 +7329,8 @@ class HTML_sportsmanager_admin
|
|
|
|
|
?>
|
|
|
|
|
<label
|
|
|
|
|
for="ticker_logo_url"><?php echo Text::_('COM_SPORTSMANAGER_NEW_IMAGE'); ?></label>
|
|
|
|
|
<br/><br/><input type="file" name="bild_ticker_logo" size="30"/>
|
|
|
|
|
<br/><br/>URL: <input class="inputbox" type="text"
|
|
|
|
|
<br/><input type="file" name="bild_ticker_logo" size="30"/>
|
|
|
|
|
<br/>URL: <input class="inputbox" type="text"
|
|
|
|
|
name="ticker_logo_url" id="ticker_logo_url"
|
|
|
|
|
size="50" maxlength="150"/>
|
|
|
|
|
<?php
|
|
|
|
@@ -9538,7 +9551,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
$jahr = $veranstaltung->erster_tag != null ? substr($veranstaltung->erster_tag, 0, 4) : 0;
|
|
|
|
|
?>
|
|
|
|
|
<div class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"
|
|
|
|
|
style='background-color:#000066;width:760px;font-weight:600;text-align:center;'>
|
|
|
|
|
style='background-color:#000066;color: #cccccc;width:760px;font-weight:600;text-align:center;'>
|
|
|
|
|
<?php echo Text::_('COM_SPORTSMANAGER_COMPETITION'); ?>
|
|
|
|
|
<?php echo htmlentities_utf8($veranstaltung->bezeichnung); ?>
|
|
|
|
|
: <?php echo Text::_('COM_SPORTSMANAGER_GENERATE_ENCOUNTERS_NEXT_ROUND'); ?></div>
|
|
|
|
@@ -9550,7 +9563,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
<td nowrap style="width: 60%; vertical-align: top">
|
|
|
|
|
<div class="uk-overflow-auto">
|
|
|
|
|
<table>
|
|
|
|
|
<tr><td colspan=2 style="text-align: center; background-color: #660033"><b>Grundeinstellungen</b></td></tr>
|
|
|
|
|
<tr><td colspan=2 style="text-align: center; background-color: #660033;color: #cccccc;"><b>Grundeinstellungen</b></td></tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>Runden</td>
|
|
|
|
|
<td colspan style="text-align: left">
|
|
|
|
@@ -9607,14 +9620,14 @@ class HTML_sportsmanager_admin
|
|
|
|
|
$bgcolor = "#000099";
|
|
|
|
|
}
|
|
|
|
|
if ($spieltag == 1){
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #000099'><b>Hinrunde</b></td></tr>";
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #000099; color: #cccccc;'><b>Hinrunde</b></td></tr>";
|
|
|
|
|
}
|
|
|
|
|
if ($spieltag == $spieltage + 1){
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #000033'><b>Rückrunde</b> (Bei <i><u>Nur Hinrunde</u></i> sind hier keine Eingaben erforderlich)</td></tr>";
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #000033; color: #cccccc;'><b>Rückrunde</b> (Bei <i><u>Nur Hinrunde</u></i> sind hier keine Eingaben erforderlich)</td></tr>";
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 130px; text-align: center; background-color: <?php echo $bgcolor; ?>">
|
|
|
|
|
<td nowrap style="width: 130px; text-align: center; background-color: <?php echo $bgcolor; ?>; color: #cccccc;">
|
|
|
|
|
<label
|
|
|
|
|
for="calendar_week_<?php echo $spieltag; ?>"><?php echo $spieltag; ?>
|
|
|
|
|
. <?php echo Text::_('COM_SPORTSMANAGER_GAMEDAY'); ?>:</label>
|
|
|
|
@@ -9659,7 +9672,7 @@ class HTML_sportsmanager_admin
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center'> </td></tr>";
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #660033'
|
|
|
|
|
echo "<tr><td colspan=2 style='text-align: center; background-color: #660033; color: #cccccc;'
|
|
|
|
|
title='Setzliste bzw. Erste Paarung Automatisch: Spiele sind die die erste Begegnungen in der Saison Setzliste: Mannschaften werden in eine Spielmatrix gesetzt Manschaften aud 1/2 bzw. 3/4 bzw. 5/6 usw. haben nie gleichzeitg Heimrecht!'><b>Setzliste bzw. Erste Paarung</b></td></tr>";
|
|
|
|
|
for ($teamnr = 1; $teamnr <= $anzahlteams; $teamnr += 2) {
|
|
|
|
|
?>
|
|
|
|
@@ -10013,19 +10026,18 @@ class HTML_sportsmanager_admin
|
|
|
|
|
{
|
|
|
|
|
global $params;
|
|
|
|
|
?>
|
|
|
|
|
<div class="componentheading<?php echo $params->get('pageclass_sfx'); ?>"><?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?></div>
|
|
|
|
|
|
|
|
|
|
<form action="<?php echo SportsManagerURL(); ?>" method="post" name="adminForm" id="adminForm">
|
|
|
|
|
<div class="uk-overflow-auto"><table class="" style="width: 100%">
|
|
|
|
|
<div class="uk-overflow-auto">
|
|
|
|
|
<table class="" style="width: 500px">
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 60%; vertical-align: top">
|
|
|
|
|
<div class="uk-overflow-auto"><table class="" style="width: 100%">
|
|
|
|
|
<th align=center colspan='2'><?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?></th>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 20%; text-align: right">
|
|
|
|
|
<td nowrap style="width: 120px; text-align: right">
|
|
|
|
|
<label for="veranstaltungId">Veranstaltung</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<select class="uk-select uk-form-width-medium" name="veranstaltungid" size="1">
|
|
|
|
|
<select class="uk-select uk-form-width-large" style='width: 320px;' name="veranstaltungid" size="1">
|
|
|
|
|
<option value='<?PHP echo $veranstaltung->veranstaltung_id; ?>'><?PHP echo $veranstaltung->bezeichnung; ?></option>
|
|
|
|
|
<?PHP foreach ($saison AS $key => $value) { ?>
|
|
|
|
|
<option value='<?PHP echo $value->veranstaltung_id; ?>'><?PHP echo $value->bezeichnung; ?></option>
|
|
|
|
@@ -10034,11 +10046,11 @@ class HTML_sportsmanager_admin
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 20%; text-align: right">
|
|
|
|
|
<td nowrap style="text-align: right">
|
|
|
|
|
<label for="export">Exportieren</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<select class="uk-select uk-form-width-medium" name="export" id="export" size="1">
|
|
|
|
|
<select class="uk-select uk-form-width-large" style='width: 320px;' name="export" id="export" size="1">
|
|
|
|
|
<option value='spieler'>Spieler</option>
|
|
|
|
|
<option value='spielplan'>Spielplan</option>
|
|
|
|
|
<option value='spielberichte'>Spielberichte</option>
|
|
|
|
@@ -10046,19 +10058,17 @@ class HTML_sportsmanager_admin
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td nowrap style="width: 20%; text-align: right">
|
|
|
|
|
<td nowrap style="text-align: right">
|
|
|
|
|
<label for="exportformat">Exportformat</label>
|
|
|
|
|
</td>
|
|
|
|
|
<td nowrap>
|
|
|
|
|
<select class="uk-select uk-form-width-medium" name="exportformat" id="exportformat" size="1">
|
|
|
|
|
<select class="uk-select uk-form-width-large" style='width: 320px;' name="exportformat" id="exportformat" size="1">
|
|
|
|
|
<option value='csvdatei'>CSV-Datei</option>
|
|
|
|
|
</select>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table></div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table></div>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<input type="submit" name="save" value="<?php echo Text::_('COM_SPORTSMANAGER_EXPORT'); ?>"
|
|
|
|
|
class="button"/>
|
|
|
|
|