blob: e58905671813cd7935bfa6213970e8db7916c328 (
plain)
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
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\FilesReminders\SetupChecks;
use OCP\App\IAppManager;
use OCP\IL10N;
use OCP\SetupCheck\ISetupCheck;
use OCP\SetupCheck\SetupResult;
class NeedNotificationsApp implements ISetupCheck {
public function __construct(
private IAppManager $appManager,
private IL10N $l10n,
) {
}
public function getName(): string {
return $this->l10n->t('Files reminder');
}
public function getCategory(): string {
return 'system';
}
public function run(): SetupResult {
if ($this->appManager->isEnabledForAnyone('notifications')) {
return SetupResult::success($this->l10n->t('The "files_reminders" app can work properly.'));
} else {
return SetupResult::warning($this->l10n->t('The "files_reminders" app needs the notification app to work properly. You should either enable notifications or disable files_reminder.'));
}
}
}
|