forked from SimonT-STHS/STHS-DynamicWebsite-Production
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoaliesRoster.php
413 lines (380 loc) · 20.5 KB
/
GoaliesRoster.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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
<?php include "Header.php";
$Title = (string)"";
$Team = (integer)-1; /* -1 All Team */
$Search = (boolean)False;
$HistoryOutput = (boolean)False;
include "SearchPossibleOrderField.php";
If (file_exists($DatabaseFile) == false){
Goto STHSErrorGoaliesRoster;
}else{try{
$ACSQuery = (boolean)FALSE;/* The SQL Query must be Ascending Order and not Descending */
$Expansion = (boolean)FALSE; /* To show Expension Draft Avaiable Player - Not Apply if Free Agent Option or Unassigned option is also request */
$ExpansionProtected = (boolean)FALSE; /* To show Expension Draft Avaiable Player - Not Apply if Free Agent Option or Unassigned option is also request */
$AvailableForTrade = (boolean)FALSE; /* To show Available for Trade Only - Not Apply if Free Agent Option or Expansion option is also request */
$Retire = (string )"'False'"; /* To Show Retire Player or Not */
$Injury = (boolean)FALSE; /* To show Available for Trade Only - Not Apply if Free Agent Option or Expansion option or Available for Trade is also request */
$MaximumResult = (integer)0;
$OrderByField = (string)"Overall";
$OrderByFieldText = (string)"Overall";
$OrderByInput = (string)"";
$FreeAgentYear = (integer)-1; /* -1 = No Input */
$Type = (integer)0; /* 0 = All / 1 = Pro / 2 = Farm */
$TitleOverwrite = (string)"";
$LeagueName = (string)"";
if(isset($_GET['Type'])){$Type = filter_var($_GET['Type'], FILTER_SANITIZE_NUMBER_INT);}
if(isset($_GET['ACS'])){$ACSQuery = TRUE;}
if(isset($_GET['Max'])){$MaximumResult = filter_var($_GET['Max'], FILTER_SANITIZE_NUMBER_INT);}
if(isset($_GET['Order'])){$OrderByInput = filter_var($_GET['Order'], FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_LOW || FILTER_FLAG_STRIP_HIGH || FILTER_FLAG_NO_ENCODE_QUOTES || FILTER_FLAG_STRIP_BACKTICK);}
if(isset($_GET['Team'])){$Team = filter_var($_GET['Team'], FILTER_SANITIZE_NUMBER_INT);}
if(isset($_GET['Title'])){$TitleOverwrite = filter_var($_GET['Title'], FILTER_UNSAFE_RAW, FILTER_FLAG_STRIP_LOW || FILTER_FLAG_STRIP_HIGH || FILTER_FLAG_NO_ENCODE_QUOTES || FILTER_FLAG_STRIP_BACKTICK);}
if(isset($_GET['FreeAgent'])){$FreeAgentYear = filter_var($_GET['FreeAgent'], FILTER_SANITIZE_NUMBER_INT);If ($FreeAgentYear == null){$FreeAgentYear = (integer)0;}}
if(isset($_GET['Expansion'])){$Expansion = TRUE;}
if(isset($_GET['ExpansionProtected'])){$ExpansionProtected = TRUE;}
if(isset($_GET['AvailableForTrade'])){$AvailableForTrade = TRUE;}
if(isset($_GET['Injury'])){$Injury = TRUE;}
if(isset($_GET['Retire'])){$Retire = "'True'";$FreeAgentYear=-1;} /* Retire Overwrite Everything including FreeAgent */
foreach ($GoaliesRosterPossibleOrderField as $Value) {
If (strtoupper($Value[0]) == strtoupper($OrderByInput)){
$OrderByField = $Value[0];
$OrderByFieldText = $Value[1];
Break;
}
}
$Playoff = (boolean)False;
$PlayoffString = (string)"False";
$Year = (integer)0;
if(isset($_GET['Playoff'])){$Playoff=True;$PlayoffString="True";}
if(isset($_GET['Year'])){$Year = filter_var($_GET['Year'], FILTER_SANITIZE_NUMBER_INT);}
If($Year > 0 AND file_exists($CareerStatDatabaseFile) == true){ /* CareerStat */
$db = new SQLite3($CareerStatDatabaseFile);
$CareerDBFormatV2CheckCheck = $db->querySingle("SELECT Count(name) AS CountName FROM sqlite_master WHERE type='table' AND name='LeagueGeneral'",true);
If ($CareerDBFormatV2CheckCheck['CountName'] == 1){
$HistoryOutput = True;
/* Reset Variable Ignore in History Mode */
$FreeAgentYear = (integer)-1; /* -1 = No Input */
$Expansion = (boolean)FALSE;
$ExpansionProtected = (boolean)FALSE;
$Query = "Select Name, RFAAge, UFAAge from LeagueGeneral WHERE Year = " . $Year . " And Playoff = '" . $PlayoffString. "'";
$LeagueGeneral = $db->querySingle($Query,true);
//Confirm Valid Data Found
$CareerDBFormatV2CheckCheck = $db->querySingle("Select Count(Name) As CountName from LeagueGeneral WHERE Year = " . $Year . " And Playoff = '" . $PlayoffString. "'",true);
If ($CareerDBFormatV2CheckCheck['CountName'] == 1){$LeagueName = $LeagueGeneral['Name'];}else{$Year = (integer)0;$HistoryOutput = (boolean)False;Goto RegularSeason;}
$Query = "Select SalaryCapOption from LeagueFinance WHERE Year = " . $Year . " And Playoff = '" . $PlayoffString. "'";
$LeagueFinance = $db->querySingle($Query,true);
$Query = "Select MergeRosterPlayerInfo, FreeAgentUseDateInsteadofDay, FreeAgentRealDate from LeagueOutputOption WHERE Year = " . $Year . " And Playoff = '" . $PlayoffString. "'";
$LeagueOutputOption = $db->querySingle($Query,true);
$Query = "SELECT *, '0' As TeamThemeID FROM GoalerInfoHistory WHERE Retire = " . $Retire . " AND Year = " . $Year . " And Playoff = '" . $PlayoffString. "'";
If($AvailableForTrade == TRUE){$Title = $DynamicTitleLang['AvailableForTrade'];}
If($Retire == "'True'"){$Title = $DynamicTitleLang['Retire'];}
/* Team or All */
if($Team >= 0 And $Retire == "'False'"){
if($Team > 0){
$QueryTeam = "SELECT Name FROM TeamProInfoHistory WHERE Number = " . $Team . " AND Year = " . $Year . " And Playoff = '" . $PlayoffString. "'";
$TeamName = $db->querySingle($QueryTeam,true);
if (isset($TeamName['Name'])){$Title = $Title . $TeamName['Name'];}
}else{
$Title = $DynamicTitleLang['Unassigned'];
}
$Query = $Query . " AND GoalerInfoHistory .Team = " . $Team;
}else{
if($Type == 1 Or $Type == 2 ){$Query = $Query . " AND GoalerInfoHistory .Number > 0";}
}
If($MaximumResult == 0){$Title = $Title . $DynamicTitleLang['All'];}else{$Title = $Title . $DynamicTitleLang['Top'] .$MaximumResult;}
/* Pro Only or Farm */
if($Type == 1){
$Query = $Query . " AND GoalerInfoHistory .Status1 >= 2";
$Title = $Title . $DynamicTitleLang['Pro'];
}elseif($Type == 2){
$Query = $Query . " AND GoalerInfoHistory .Status1 <= 1";
$Title = $Title . $DynamicTitleLang['Farm'];
}
/* Option */
If ($Retire == "'False'"){
if($AvailableForTrade == TRUE){
if($Type == 0 AND $Team == -1){$Query = $Query . " AND GoalerInfoHistory .Team > 0";}
$Query = $Query . " AND GoalerInfoHistory .AvailableForTrade = 'True'";
}elseif($Injury == TRUE){
if($Type == 0 AND $Team == -1){$Query = $Query . " AND GoalerInfo.Team > 0";}
$Query = $Query . " AND (GoalerInfoHistory .Condition < '95' OR GoalerInfoHistory .Suspension > '1')";
}
}
$Title = $Title . $DynamicTitleLang['GoaliesRoster'] . " - " . $Year;
If ($Playoff == True){$Title = $Title . $TopMenuLang['Playoff'];}
/* Order by and Limit */
$Query = $Query . " ORDER BY " . $OrderByField;
If ($ACSQuery == TRUE){
$Query = $Query . " ASC";
$Title = $Title . $DynamicTitleLang['InAscendingOrderBy'] . $OrderByFieldText;
}else{
$Query = $Query . " DESC";
$Title = $Title . $DynamicTitleLang['InDecendingOrderBy'] . $OrderByFieldText;
}
If ($MaximumResult > 0){$Query = $Query . " LIMIT " . $MaximumResult;}
/* Ran Query */
$GoalieRoster = $db->query($Query);
echo "<title>" . $LeagueName . " - " . $Title . "</title>";
}else{
Goto RegularSeason;
}
}else{
/* Regular Season */
RegularSeason:
$db = new SQLite3($DatabaseFile);
$Query = "Select Name, RFAAge, UFAAge from LeagueGeneral";
$LeagueGeneral = $db->querySingle($Query,true);
$LeagueName = $LeagueGeneral['Name'];
$Query = "Select SalaryCapOption from LeagueFinance";
$LeagueFinance = $db->querySingle($Query,true);
$Query = "Select MergeRosterPlayerInfo, FreeAgentUseDateInsteadofDay, FreeAgentRealDate from LeagueOutputOption";
$LeagueOutputOption = $db->querySingle($Query,true);
$Query = "Select AllowFreeAgentSalaryRequestInSTHSClient from LeagueWebClient";
$LeagueWebClient = $db->querySingle($Query,true);
If ($FreeAgentYear == 1){
$Query = "SELECT GoalerInfo.*, NextYearFreeAgent.PlayerType AS NextYearFreeAgentPlayerType, NextYearFreeAgent.Contract as NextYearFreeAgentContract, NextYearFreeAgent.Salary as NextYearFreeAgentSalary FROM GoalerInfo LEFT JOIN NextYearFreeAgent ON GoalerInfo.Number = NextYearFreeAgent.Number WHERE Retire = 'False' AND NextYearFreeAgentContract IS NULL";
}else{
$Query = "SELECT * FROM GoalerInfo WHERE Retire = " . $Retire;
}
If($Expansion == TRUE){$Title = $DynamicTitleLang['ExpansionDraft'];}
If($ExpansionProtected == TRUE){$Title = $DynamicTitleLang['ExpansionDraftProtected'];}
If($AvailableForTrade == TRUE){$Title = $DynamicTitleLang['AvailableForTrade'];}
If($Retire == "'True'"){$Title = $DynamicTitleLang['Retire'];}
/* Team or All */
if($Team >= 0 And $Retire == "'False'"){
if($Team > 0){
$QueryTeam = "SELECT Name FROM TeamProInfo WHERE Number = " . $Team;
$TeamName = $db->querySingle($QueryTeam,true);
if (isset($TeamName['Name'])){$Title = $Title . $TeamName['Name'] . " - ";}
}else{
$Title = $DynamicTitleLang['Unassigned'];
}
$Query = $Query . " AND GoalerInfo.Team = " . $Team;
}else{
if($Type == 1 Or $Type == 2 ){$Query = $Query . " AND GoalerInfo.Number > 0";}
}
If($MaximumResult == 0){$Title = $Title . $DynamicTitleLang['All'];}else{$Title = $Title . $DynamicTitleLang['Top'] .$MaximumResult;}
/* Pro Only or Farm */
if($Type == 1){
$Query = $Query . " AND GoalerInfo.Status1 >= 2";
$Title = $Title . $DynamicTitleLang['Pro'];
}elseif($Type == 2){
$Query = $Query . " AND GoalerInfo.Status1 <= 1";
$Title = $Title . $DynamicTitleLang['Farm'];
}
/* Option */
If ($Retire == "'False'"){
If ($FreeAgentYear >= 0){
if($Type == 0 AND $Team == -1){$Query = $Query . " AND GoalerInfo.Team > 0";}
$Query = $Query . " AND GoalerInfo.Contract = " . $FreeAgentYear; /* Free Agent Query */
If ($FreeAgentYear == 0){$Title = $Title . $DynamicTitleLang['ThisYearFreeAgents'];}elseIf ($FreeAgentYear == 1){$Title = $Title . $DynamicTitleLang['NextYearFreeAgents'];}else{$Title = $Title . " " . $FreeAgentYear . $DynamicTitleLang['YearsFreeAgents'];}
}elseif($Expansion == TRUE){
$Query = $Query . " AND GoalerInfo.PProtected = 'False'";
}elseif($ExpansionProtected == TRUE){
$Query = $Query . " AND GoalerInfo.PProtected = 'True'";
}elseif($AvailableForTrade == TRUE){
if($Type == 0 AND $Team == -1){$Query = $Query . " AND GoalerInfo.Team > 0";}
$Query = $Query . " AND GoalerInfo.AvailableForTrade = 'True'";
}elseif($Injury == TRUE){
if($Type == 0 AND $Team == -1){$Query = $Query . " AND GoalerInfo.Team > 0";}
$Query = $Query . " AND (GoalerInfo.Condition < '95' OR GoalerInfo.Suspension > '1')";
}
}
$Title = $Title . $DynamicTitleLang['GoaliesRoster'];
/* Order by and Limit */
$Query = $Query . " ORDER BY " . $OrderByField;
If ($ACSQuery == TRUE){
$Query = $Query . " ASC";
$Title = $Title . $DynamicTitleLang['InAscendingOrderBy'] . $OrderByFieldText;
}else{
$Query = $Query . " DESC";
$Title = $Title . $DynamicTitleLang['InDecendingOrderBy'] . $OrderByFieldText;
}
If ($MaximumResult > 0){$Query = $Query . " LIMIT " . $MaximumResult;}
/* Ran Query */
$GoalieRoster = $db->query($Query);
/* OverWrite Title if information is get from PHP GET */
if($TitleOverwrite <> ""){$Title = $TitleOverwrite;}
echo "<title>" . $LeagueName . " - " . $Title . "</title>";
}
} catch (Exception $e) {
STHSErrorGoaliesRoster:
$LeagueName = $DatabaseNotFound;
$GoalieRoster = Null;
$LeagueOutputOption = Null;
$FreeAgentYear = Null;
echo "<title>" . $DatabaseNotFound . "</title>";
$Title = $DatabaseNotFound;
echo "<style>.STHSGoalieRoster_MainDiv{display:none}</style>";
}}?>
</head><body>
<?php include "Menu.php";?>
<script>
$(function() {
$(".STHSPHPAllGoaliesRoster_Table").tablesorter({
widgets: ['columnSelector', 'stickyHeaders', 'filter', 'output'],
widgetOptions : {
columnSelector_container : $('#tablesorter_ColumnSelector'),
columnSelector_layout : '<label><input type="checkbox">{name}</label>',
columnSelector_name : 'title',
columnSelector_mediaquery: true,
columnSelector_mediaqueryName: 'Automatic',
columnSelector_mediaqueryState: true,
columnSelector_mediaqueryHidden: true,
columnSelector_breakpoints : [ '50em', '60em', '70em', '80em', '90em', '95em' ],
filter_columnFilters: true,
filter_placeholder: { search : '<?php echo $TableSorterLang['Search'];?>' },
filter_searchDelay : 500,
filter_reset: '.tablesorter_Reset',
output_delivery: 'd',
output_saveFileName: 'STHSGoaliesRoster.CSV'
}
});
$('.download').click(function(){
var $table = $('.STHSPHPAllGoaliesRoster_Table'),
wo = $table[0].config.widgetOptions;
$table.trigger('outputTable');
return false;
});
});
</script>
<div class="STHSGoalieRoster_MainDiv" style="width:99%;margin:auto;">
<?php echo "<h1>" . $Title . "</h1>"; ?>
<div id="ReQueryDiv" style="display:none;">
<?php If($HistoryOutput == False){
include "SearchGoalierRoster.php";
}else{
include "SearchHistorySub.php";
include "SearchHistoryGoalierRoster.php";
$Team = (integer)-1;
}?>
</div>
<div class="tablesorter_ColumnSelectorWrapper">
<button class="tablesorter_Output" id="ReQuery"><?php echo $SearchLang['ChangeSearch'];?></button>
<input id="tablesorter_colSelect1" type="checkbox" class="hidden">
<label class="tablesorter_ColumnSelectorButton" for="tablesorter_colSelect1"><?php echo $TableSorterLang['ShoworHideColumn'];?></label>
<button class="tablesorter_Output download" type="button">Output</button>
<div id="tablesorter_ColumnSelector" class="tablesorter_ColumnSelector"></div>
<?php include "FilterTip.php";?>
</div>
<table class="tablesorter STHSPHPAllGoaliesRoster_Table"><thead><tr>
<th data-priority="critical" title="Goalie Name" class="STHSW140Min"><?php echo $PlayersLang['GoalieName'];?></th>
<?php if($Team >= 0){echo "<th class=\"columnSelector-false STHSW140Min\" data-priority=\"6\" title=\"Team Name\">" . $PlayersLang['TeamName'] . "</th>";}else{echo "<th data-priority=\"2\" title=\"Team Name\" class=\"STHSW140Min\">" . $PlayersLang['TeamName'] ."</th>";}?>
<th <?php if($Team >= 0){echo " data-priority=\"1\" class=\"STHSW25\"";}else{echo "data-priority=\"5\" class=\"columnSelector-false STHSW25\"";}?> title="Condition">CON</th>
<th data-priority="6" title="Protected" class="columnSelector-false STHSW25">PT</th>
<th data-priority="2" title="Skating" class="STHSW25">SK</th>
<th data-priority="2" title="Durability" class="STHSW25">DU</th>
<th data-priority="2" title="Endurance" class="STHSW25">EN</th>
<th data-priority="2" title="Size" class="STHSW25">SZ</th>
<th data-priority="2" title="Agility" class="STHSW25">AG</th>
<th data-priority="2" title="Rebound Control" class="STHSW25">RB</th>
<th data-priority="2" title="Style Control" class="STHSW25">SC</th>
<th data-priority="2" title="Hand Speed" class="STHSW25">HS</th>
<th data-priority="2" title="Reaction Time" class="STHSW25">RT</th>
<th data-priority="2" title="Puck Handling" class="STHSW25">PH</th>
<th data-priority="2" title="Penalty Shot" class="STHSW25">PS</th>
<th data-priority="2" title="Experience" class="STHSW25">EX</th>
<th data-priority="2" title="Leadership" class="STHSW25">LD</th>
<th data-priority="3" title="Potential" class="STHSW25">PO</th>
<th <?php if($FreeAgentYear == -1){echo " data-priority=\"3\" class=\"STHSW25\"";}else{echo "data-priority=\"5\" class=\"columnSelector-false STHSW25\"";}?> title="Morale">MO</th>
<th data-priority="critical" title="Overall" class="STHSW25">OV</th>
<?php if ($GoalieRoster != Null){
if ($FreeAgentYear == -1){
echo "<th data-priority=\"5\" class=\"columnSelector-false STHSW25\" title=\"Trade Available\">TA</th>";
}else{
echo "<th data-priority=\"4\" class=\"STHSW75\" title=\"Status\">" . $PlayersLang['Status'] . "</th>";
if ($LeagueWebClient['AllowFreeAgentSalaryRequestInSTHSClient'] == "True"){echo "<th data-priority=\"4\" class=\"STHSW75\" title=\"Free Agent Salary Request\">" . $PlayersLang['SalaryRequest'] . "</th>";}
}
if ($LeagueOutputOption['MergeRosterPlayerInfo'] == "True"){
echo "<th data-priority=\"6\" title=\"Star Power\" class=\"columnSelector-false STHSW25\">SP</th>";
echo "<th data-priority=\"5\" class=\"STHSW25\" title=\"Age\">" . $PlayersLang['Age'] . "</th>";
echo "<th data-priority=\"5\" class=\"STHSW25\" title=\"Contract\">" . $PlayersLang['Contract'] . "</th>";
echo "<th data-priority=\"5\" class=\"STHSW65\" title=\"Salary\">" . $PlayersLang['Salary'] ."</th>";
}else{
echo "<th data-priority=\"5\" title=\"Star Power\" class=\"STHSW25\">SP</th>";
}
}?>
<th data-priority="5" title="Hyperlink" class="STHSW65"><?php echo $PlayersLang['Link'];?></th>
</tr></thead><tbody>
<?php
if (empty($GoalieRoster) == false){while ($Row = $GoalieRoster ->fetchArray()) {
$strTemp = (string)$Row['Name'];
if ($Row['Rookie']== "True"){ $strTemp = $strTemp . " (R)";}
echo "<tr><td><a href=\"GoalieReport.php?Goalie=" . $Row['Number'] . "\">" . $strTemp . "</a></td>";
if ($Row['Retire']== "True"){
echo "<td>" . $PlayersLang['Retire'] . "</td>";
}else{
echo "<td>";
If ($Row['TeamThemeID'] > 0){echo "<img src=\"" . $ImagesCDNPath . "/images/" . $Row['TeamThemeID'] .".png\" alt=\"\" class=\"STHSPHPGoaliesRosterTeamImage\" />";}
if ($FreeAgentYear == -1){
echo $Row['TeamName'] . "</td>";
}else{
echo $Row['ProTeamName'] . "</td>";
}
}
echo "<td>";if ($Row <> Null){
if ($Row['Suspension'] == 99){
echo "HO";}elseif ($Row['Suspension'] > 0){echo "S" . $Row['Suspension'] . "</td>";
}else{
echo number_format(str_replace(",",".",$Row['ConditionDecimal']),2);
}
} echo"</td>";
echo "<td>";if ($Row['PProtected']== "True"){ echo "X";}; echo"</td>";
echo "<td>" . $Row['SK'] . "</td>";
echo "<td>" . $Row['DU'] . "</td>";
echo "<td>" . $Row['EN'] . "</td>";
echo "<td>" . $Row['SZ'] . "</td>";
echo "<td>" . $Row['AG'] . "</td>";
echo "<td>" . $Row['RB'] . "</td>";
echo "<td>" . $Row['SC'] . "</td>";
echo "<td>" . $Row['HS'] . "</td>";
echo "<td>" . $Row['RT'] . "</td>";
echo "<td>" . $Row['PH'] . "</td>";
echo "<td>" . $Row['PS'] . "</td>";
echo "<td>" . $Row['EX'] . "</td>";
echo "<td>" . $Row['LD'] . "</td>";
echo "<td>" . $Row['PO'] . "</td>";
echo "<td>" . $Row['MO'] . "</td>";
echo "<td>" . $Row['Overall'] . "</td>";
if ($FreeAgentYear == -1){
echo "<td>";if ($Row['AvailableforTrade']== "True"){ echo "X";}; echo"</td>";
}else{
If ($FreeAgentYear == 1 AND $Row['NextYearFreeAgentPlayerType']=="False"){
echo "<td>" . $PlayersLang['AlreadyResign'] . "</td>";
}elseif ($LeagueOutputOption['FreeAgentUseDateInsteadofDay'] == "True" AND $FreeAgentYear == 1){
$age = date_diff(date_create($Row['AgeDate']), date_create($LeagueOutputOption['FreeAgentRealDate']))->y;
if ($age >= $LeagueGeneral['UFAAge']){echo "<td>" . $PlayersLang['UFA'] . "</td>";}elseif($age >= $LeagueGeneral['RFAAge']){echo "<td>" . $PlayersLang['RFA'] . "</td>";}else{echo "<td>" . $PlayersLang['ELC'] . "</td>";}
}else{
if ($Row['Age'] >= $LeagueGeneral['UFAAge']){echo "<td>" . $PlayersLang['UFA'] . "</td>";}elseif($Row['Age'] >= $LeagueGeneral['RFAAge']){echo "<td>" . $PlayersLang['RFA'] . "</td>";}else{echo "<td>" . $PlayersLang['ELC'] . "</td>";}
}
if ($LeagueWebClient['AllowFreeAgentSalaryRequestInSTHSClient'] == "True"){echo "<td>" . number_format($Row['FreeAgentSalaryRequest'],0) . "$ / " . $Row['FreeAgentContratRequest']; If ($Row['FreeAgentBonusRequest'] > 0){echo " / B:" . number_format($Row['FreeAgentBonusRequest'],0) . "$";}echo "</td>";}
}
if ($LeagueOutputOption['MergeRosterPlayerInfo'] == "True"){
echo "<td>" . $Row['StarPower'] . "</td>";
echo "<td>" . $Row['Age'] . "</td>";
echo "<td>" . $Row['Contract'] . "</td>";
if ($FreeAgentYear == 0){
echo "<td>" . number_format($Row['LastYearSalary'],0) . "$</td>";
}else{
echo "<td>" . number_format($Row['Salary1'],0) . "$</td>";
}
}
echo "<td>";
if ($Row['URLLink'] != ""){echo "<a href=" . $Row['URLLink'] . " target=\"new\">" . $PlayersLang['Link'] . "</a>";}
if ($Row['URLLink'] != "" AND $Row['NHLID'] != ""){echo " / ";}
if ($Row['NHLID'] != ""){echo "<a href=\"https://www.nhl.com/player/" . $Row['NHLID'] . "\" target=\"new\">" . $PlayersLang['NHLLink'] . "</a>";}
echo "</td>";
echo "</tr>\n"; /* The \n is for a new line in the HTML Code */
}}
?>
</tbody></table></div>
<?php
if ($FreeAgentYear >= 0 AND $GoalieRoster != Null){
echo "<em>" . $DynamicTitleLang['FreeAgentStatus'];
if ($LeagueOutputOption['FreeAgentUseDateInsteadofDay'] == "True" AND $FreeAgentYear == 1){
echo date_Format(date_create($LeagueOutputOption['FreeAgentRealDate']),"Y-m-d") . "</em>";
}else{
echo date("Y-m-d") . "</em>";
}
}
?>
<br>
<?php include "Footer.php";?>