123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace OCA\Settings\Activity;
- use OCP\Activity\ISetting;
- use OCP\IL10N;
- class Setting implements ISetting {
-
- public function __construct(
- protected IL10N $l,
- ) {
- }
-
- public function getIdentifier() {
- return 'personal_settings';
- }
-
- public function getName() {
- return $this->l->t('Your <strong>password</strong> or <strong>email</strong> was modified');
- }
-
- public function getPriority() {
- return 0;
- }
-
- public function canChangeStream() {
- return false;
- }
-
- public function isDefaultEnabledStream() {
- return true;
- }
-
- public function canChangeMail() {
- return false;
- }
-
- public function isDefaultEnabledMail() {
- return false;
- }
- }
|