blob: cc7c47784ac6e2cb91147fa091e95701bd0c0e47 (
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
40
41
42
43
44
|
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Comments\Activity;
use OCP\Activity\ISetting;
use OCP\IL10N;
class Setting implements ISetting {
public function __construct(
protected IL10N $l,
) {
}
public function getIdentifier(): string {
return 'comments';
}
public function getName(): string {
return $this->l->t('<strong>Comments</strong> for files');
}
public function getPriority(): int {
return 50;
}
public function canChangeStream(): bool {
return true;
}
public function isDefaultEnabledStream(): bool {
return true;
}
public function canChangeMail(): bool {
return true;
}
public function isDefaultEnabledMail(): bool {
return false;
}
}
|