1
|
|
|
<?php |
2
|
|
|
declare(strict_types=1); |
3
|
|
|
|
4
|
|
|
/* |
5
|
|
|
* Copyright (C) |
6
|
|
|
* Nathan Boiron <[email protected]> |
7
|
|
|
* Romain Canon <[email protected]> |
8
|
|
|
* |
9
|
|
|
* This file is part of the TYPO3 NotiZ project. |
10
|
|
|
* It is free software; you can redistribute it and/or modify it |
11
|
|
|
* under the terms of the GNU General Public License, either |
12
|
|
|
* version 3 of the License, or any later version. |
13
|
|
|
* |
14
|
|
|
* For the full copyright and license information, see: |
15
|
|
|
* http://www.gnu.org/licenses/gpl-3.0.html |
16
|
|
|
*/ |
17
|
|
|
|
18
|
|
|
namespace CuyZ\Notiz\Controller\Backend\Manager; |
19
|
|
|
|
20
|
|
|
use CuyZ\Notiz\Controller\Backend\Menu; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* Show detailed information about a given event. |
24
|
|
|
*/ |
25
|
|
|
class ShowEventController extends ManagerController |
26
|
|
|
{ |
27
|
|
|
/** |
28
|
|
|
* Show detailed information about a given event. |
29
|
|
|
* |
30
|
|
|
* @param string $eventIdentifier |
31
|
|
|
*/ |
32
|
|
|
public function processAction(string $eventIdentifier) |
33
|
|
|
{ |
34
|
|
|
$definition = $this->getDefinition(); |
35
|
|
|
|
36
|
|
|
if (!$definition->hasEventFromFullIdentifier($eventIdentifier)) { |
37
|
|
|
$this->addErrorMessage( |
38
|
|
|
'Backend/Module/Manager:show_event.event_not_found', |
39
|
|
|
$eventIdentifier |
40
|
|
|
); |
41
|
|
|
|
42
|
|
|
$this->forward('process', 'Backend\Manager\ListEvents'); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
$eventDefinition = $definition->getEventFromFullIdentifier($eventIdentifier); |
46
|
|
|
|
47
|
|
|
$notifications = []; |
48
|
|
|
|
49
|
|
|
foreach ($definition->getListableNotifications() as $notification) { |
50
|
|
|
$notifications[] = [ |
51
|
|
|
'definition' => $notification, |
52
|
|
|
'count' => $notification->getProcessor()->countNotificationsFromEventDefinition($eventDefinition), |
53
|
|
|
]; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
$this->view->assign('eventDefinition', $eventDefinition); |
57
|
|
|
$this->view->assign('notifications', $notifications); |
58
|
|
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* @return string |
62
|
|
|
*/ |
63
|
|
|
protected function getMenu(): string |
64
|
|
|
{ |
65
|
|
|
return Menu::MANAGER_EVENTS; |
66
|
|
|
} |
67
|
|
|
} |
68
|
|
|
|