-
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.
Allow to profile search by year of birth
- Loading branch information
Showing
6 changed files
with
83 additions
and
59 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
namespace System25\T3sports\Module\Searcher; | ||
|
||
use Sys25\RnBase\Domain\Collection\BaseCollection; | ||
|
||
/************************************************************** | ||
* Copyright notice | ||
* | ||
* (c) 2008-2024 Rene Nitzsche ([email protected]) | ||
* 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! | ||
* ************************************************************* | ||
*/ | ||
|
||
interface IProfileListRenderer | ||
{ | ||
public function renderProfiles(string $headline, BaseCollection $profiles); | ||
} |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
namespace System25\T3sports\Service; | ||
|
||
use Sys25\RnBase\Database\Connection; | ||
use Sys25\RnBase\Domain\Collection\BaseCollection; | ||
use Sys25\RnBase\Domain\Model\RecordInterface; | ||
use Sys25\RnBase\Typo3Wrapper\Service\AbstractService; | ||
use Sys25\RnBase\Utility\Misc; | ||
|
@@ -14,7 +15,7 @@ | |
/*************************************************************** | ||
* Copyright notice | ||
* | ||
* (c) 2009-2023 Rene Nitzsche ([email protected]) | ||
* (c) 2009-2024 Rene Nitzsche ([email protected]) | ||
* All rights reserved | ||
* | ||
* This script is part of the TYPO3 project. The TYPO3 project is | ||
|
@@ -227,7 +228,7 @@ public function getProfileTypeItems4TCA($uids) | |
* @param array $fields | ||
* @param array $options | ||
* | ||
* @return Profile[] | ||
* @return BaseCollection<Profile> | ||
*/ | ||
public function search($fields, $options) | ||
{ | ||
|
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