-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChannelController.php
46 lines (38 loc) · 1.49 KB
/
ChannelController.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
<?php
/* Icinga Notifications Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Notifications\Controllers;
use Icinga\Module\Notifications\Common\Database;
use Icinga\Module\Notifications\Forms\ChannelForm;
use Icinga\Web\Notification;
use ipl\Web\Compat\CompatController;
class ChannelController extends CompatController
{
public function init(): void
{
$this->assertPermission('config/modules');
}
public function indexAction(): void
{
$channelId = $this->params->getRequired('id');
$form = (new ChannelForm(Database::get()))
->loadChannel($channelId)
->on(ChannelForm::ON_SUCCESS, function (ChannelForm $form) {
if ($form->getPressedSubmitElement()->getName() === 'remove') {
$form->removeChannel();
Notification::success(sprintf(
t('Removed channel "%s" successfully'),
$form->getValue('name')
));
} else {
$form->editChannel();
Notification::success(sprintf(
t('Channel "%s" has successfully been saved'),
$form->getValue('name')
));
}
$this->redirectNow('__CLOSE__');
})->handleRequest($this->getServerRequest());
$this->addTitleTab(sprintf(t('Channel: %s'), $form->getChannelName()));
$this->addContent($form);
}
}