blob: 9315aedc1044116ea03cc979c1073845f2a80801 (
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
45
46
47
48
49
50
51
52
|
<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Comments\Activity;
use OCP\Activity\ActivitySettings;
use OCP\IL10N;
class Setting extends ActivitySettings {
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 getGroupIdentifier() {
return 'files';
}
public function getGroupName() {
return $this->l->t('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;
}
}
|