File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Classes/Domain/Repository Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2024-07-13 [RELEASE] Release of event_submission 1.4.4 (Vladimir Falcón Piva)
2
+ 2024-07-13 2f22f38 Event submission, update job status on news update hidden status (Vladimir Falcón Piva)
3
+
1
4
2024-07-10 [RELEASE] Release of event_submission 1.4.3 (Vladimir Falcón Piva)
2
5
2024-07-10 899ceab Removed dependency to iki site package (Vladimir Falcón Piva)
3
6
2024-07-02 068df25 Fixed Url for $apiUri (Vladimir Falcón Piva)
Original file line number Diff line number Diff line change @@ -117,6 +117,20 @@ public function findDemanded(DemandInterface $demand): QueryResultInterface
117
117
return $ query ->execute ();
118
118
}
119
119
120
+ public function findByEventUid (int $ uid ): null |object
121
+ {
122
+ $ query = $ this ->createQuery ();
123
+ $ query ->getQuerySettings ()->setIgnoreEnableFields (true );
124
+
125
+ return $ query
126
+ ->matching (
127
+ $ query ->logicalAnd (
128
+ $ query ->equals ('event.uid ' , $ uid ),
129
+ ),
130
+ )
131
+ ->execute ()->getFirst ();
132
+ }
133
+
120
134
protected function applyConstraints (QueryInterface $ query , DemandInterface $ demand ): void
121
135
{
122
136
$ constraints = [];
Original file line number Diff line number Diff line change 7
7
'author ' => 'Dirk Wenzel ' ,
8
8
'author_email ' => 'd.wenzel@familie-redlich.de ' ,
9
9
'author_company ' => 'CPS GmbH ' ,
10
- 'version ' => '1.4.3 ' ,
10
+ 'version ' => '1.4.4 ' ,
11
11
'constraints ' => [
12
12
'depends ' => [
13
13
'typo3 ' => '11.99.99-0.0.0 ' ,
You can’t perform that action at this time.
0 commit comments