-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add video referee and assists in fixtures #74
- Loading branch information
Showing
9 changed files
with
116 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
/*************************************************************** | ||
* Copyright notice | ||
* | ||
* (c) 2006-2021 Rene Nitzsche | ||
* (c) 2006-2023 Rene Nitzsche | ||
* Contact: [email protected] | ||
* All rights reserved | ||
* | ||
|
@@ -40,6 +40,7 @@ protected function getTableMappings() | |
{ | ||
$tableMapping = [ | ||
'PROFILE' => 'tx_cfcleague_profiles', | ||
'PROFILEMM' => 'tx_cfcleague_profiles_mm', | ||
'TEAM' => 'tx_cfcleague_teams', | ||
'TEAMNOTE' => 'tx_cfcleague_team_notes', | ||
]; | ||
|
@@ -72,6 +73,10 @@ protected function getJoins($tableAliases) | |
if (isset($tableAliases['TEAM'])) { | ||
$join[] = new Join('PROFILE', 'tx_cfcleague_teams', 'FIND_IN_SET(PROFILE.uid, TEAM.players)', 'TEAM'); | ||
} | ||
if (isset($tableAliases['PROFILEMM'])) { | ||
$join[] = new Join('PROFILE', 'tx_cfcleague_profiles_mm', 'PROFILE.uid = PROFILEMM.uid_local', 'PROFILEMM'); | ||
} | ||
|
||
if (isset($tableAliases['TEAMNOTE'])) { | ||
$join[] = new Join('PROFILE', 'tx_cfcleague_team_notes', 'PROFILE.uid = TEAMNOTE.player', 'TEAMNOTE'); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters