forked from digedag/cfc_league
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.tx_cfcleague.php
269 lines (240 loc) · 8.33 KB
/
class.tx_cfcleague.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php
/***************************************************************
* Copyright notice
*
* (c) 2007 Rene Nitzsche (rene@system25.de)
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project 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
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script 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.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
require_once('class.tx_cfcleague_db.php');
class tx_cfcleague_handleDataInput{
/**
* Liefert die Teams eines Wettbewerbs. Wird im Spiel-TCE-Dialog zur
* Auswahl der Teams verwendet.
*/
function getTeams4Competition($PA, $fobj){
// Aktuellen Wettbewerb ermitteln, wenn 0 bleiben die Felder leer
if($PA['row']['competition'])
{
$teams = $this->findTeams($PA['row']['competition']);
$PA[items] = $teams;
}
else
$PA[items] = array();
// tx_rnbase_util_Debug::debug($PA, 'cfcleague');
}
/**
* Die Trainer des Heimteams ermitteln
*/
function getCoachesHome4Match($PA, $fobj){
if($PA['row']['home'])
{
$coaches = $this->findCoaches($PA['row']['home']);
$PA[items] = $coaches;
}
}
/**
* Die Trainer des Gastteams ermitteln
*/
function getCoachesGuest4Match($PA, $fobj){
if($PA['row']['guest'])
{
$coaches = $this->findCoaches($PA['row']['guest']);
$PA[items] = $coaches;
}
}
/**
* Find player of team
* Used: Edit mask for team notes
*
* @param array $PA
* @param t3lib_TCEforms $fobj
*/
function getPlayers4Team(&$PA, &$fobj){
global $LANG;
$LANG->includeLLFile('EXT:cfc_league/locallang_db.xml');
$column = 'team';
if($PA['row'][$column])
{
$tablename = 'tx_cfcleague_team_notes';
$tcaFieldConf = $GLOBALS['TCA'][$tablename]['columns'][$column]['config'];
$team = t3lib_div::trimExplode('|', $PA['row'][$column]);
$team = $team[0];
if($tcaFieldConf['type'] == 'db') {
$dbAnalysis = t3lib_div::makeInstance('t3lib_loadDBGroup');
$dbAnalysis->registerNonTableValues=0;
$dbAnalysis->start($team, $tcaFieldConf['allowed'], '', 0, $tablename, $tcaFieldConf);
$valueArray = $dbAnalysis->getValueArray(false);
// Abfrage aus Spieldatensatz
// Es werden alle Spieler des Teams benötigt
$team = $valueArray[0];
}
$players = $this->findPlayers($team);
$players = array_merge($players, $this->findCoaches($team));
$players = array_merge($players, $this->findSupporters($team));
$PA[items] = $players;
}
else
$PA[items] = array();
}
/**
* Die Spieler des Heimteams ermitteln
* Used: Edit-Maske eines Spiels für Teamaufstellung und Match-Note
*/
function getPlayersHome4Match($PA, $fobj){
global $LANG;
$LANG->includeLLFile('EXT:cfc_league/locallang_db.xml');
// tx_rnbase_util_Debug::debug(count($PA[items]), 'items cfcleague');
if($PA['row']['home'])
{
// Abfrage aus Spieldatensatz
// Es werden alle Spieler des Teams benötigt
$players = $this->findPlayers($PA['row']['home']);
$PA[items] = $players;
}
elseif($PA['row']['game']) {
// Abfrage aus MatchNote-Datensatz
// Wenn wir die Match ID haben, können wir die Spieler auch so ermitteln
// Es werden alle aufgestellten Spieler des Matches benötigt
require_once('class.tx_cfcleague_match.php');
$match = new tx_cfcleague_match(tx_cfcleague_handleDataInput::getRowId($PA['row']['game']));
$players = $match->getPlayerNamesHome();
$playerArr = array();
foreach($players As $uid => $name) {
$playerArr[] = Array($name, $uid);
}
$PA[items] = $playerArr;
// Abschließend noch den Spieler "Unbekannt" hinzufügen! Dieser ist nur in Matchnotes verfügbar
$PA[items][] = Array($LANG->getLL('tx_cfcleague.unknown'), '-1');
}
else
$PA[items] = array();
}
/**
* Die Spieler des Gastteams ermitteln
* Used: Edit-Maske eines Spiels für Teamaufstellung
*/
function getPlayersGuest4Match($PA, $fobj){
global $LANG;
$LANG->includeLLFile('EXT:cfc_league/locallang_db.xml');
if($PA['row']['guest'])
{
$players = $this->findPlayers($PA['row']['guest']);
$PA[items] = $players;
}
elseif($PA['row']['game']) {
// Wenn wir die Match ID haben könne wir die Spieler auch so ermitteln
require_once('class.tx_cfcleague_match.php');
$match = new tx_cfcleague_match(tx_cfcleague_handleDataInput::getRowId($PA['row']['game']));
$players = $match->getPlayerNamesGuest();
$playerArr = array();
foreach($players As $uid => $name) {
$playerArr[] = Array($name, $uid);
}
$PA[items] = $playerArr;
// Abschließend noch den Spieler "Unbekannt" hinzufügen!
$PA[items][] = Array($LANG->getLL('tx_cfcleague.unknown'), '-1');
}
else // Ohne Daten müssen wir alle Spieler löschen
$PA[items] = array();
}
/**
* Sucht die Teams eines Wettbewerbs
* @param complete_row wenn false wird nur Name und UID für SELECT-Box geliefert
*/
function findTeams($competition, $complete_row = '0'){
# build SQL for select
$what = 'uid,name';
$from = 'tx_cfcleague_teams';
# WHERE
# Finde die Teams, deren UID im übergebenen Wettbewerb vorkommt
# Anm.: Wär das nicht auch mit einer einfach IN-Abfrage gegangen??
# NEIN! Da der teams-String nicht richtig ausgewertet wird.
$where = '
FIND_IN_SET(tx_cfcleague_teams.uid,(
SELECT tx_cfcleague_competition.teams FROM tx_cfcleague_competition
WHERE tx_cfcleague_competition.uid =
'.$competition . '))';
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
$what,
$from,
$where
);
$rows = array();
while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)){
$rows[] = $complete_row ? $row : Array($row['name'], $row['uid'], );
}
$GLOBALS['TYPO3_DB']->sql_free_result($res);
return $rows;
}
/**
* Liefert die Trainer (uid und name) einer Mannschaft.
*/
function findCoaches($teamId) {
$rows = array();
if(intval($teamId) == 0) return rows;
require_once('class.tx_cfcleague_team.php');
$team = new tx_cfcleague_team($teamId);
$coaches = $team->getCoachNames(1, 1); // firstEmpty und merge
foreach($coaches As $uid => $name) {
$rows[] = Array($name, $uid, );
}
return $rows;
}
/**
* Liefert die Spieler (uid und name) einer Mannschaft.
*/
function findPlayers($teamId) {
$rows = array();
if(intval($teamId) == 0) return rows;
require_once('class.tx_cfcleague_team.php');
$team = new tx_cfcleague_team($teamId);
$players = $team->getPlayerNames(0, 1);
foreach($players As $uid => $name) {
$rows[] = Array($name, $uid, );
}
return $rows;
}
/**
* Liefert die Betreuer (uid und name) einer Mannschaft.
*/
private function findSupporters($teamId) {
$rows = array();
if(intval($teamId) == 0) return rows;
require_once('class.tx_cfcleague_team.php');
$team = new tx_cfcleague_team($teamId);
$players = $team->getSupporterNames(0, 1);
foreach($players As $uid => $name) {
$rows[] = Array($name, $uid, );
}
return $rows;
}
/**
* Liefert die verschachtelte UID eines Strings der Form
* tx_table_name_uid|valuestring
*/
function getRowId($value) {
$ret = t3lib_div::trimExplode('|', $value);
$ret = t3lib_div::trimExplode('_', $ret[0]);
return intval($ret[count($ret)-1]);
}
}
if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cfc_league/class.tx_cfcleague.php']) {
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['ext/cfc_league/class.tx_cfcleague.php']);
}
?>