Merge branch 'gouttegd-fix/issue-610'

This commit is contained in:
WolFi 2019-10-20 20:49:22 +02:00
commit ec89cd12ac
No known key found for this signature in database
GPG key ID: 7D15585354D072FF
2 changed files with 21 additions and 14 deletions

View file

@ -23,19 +23,8 @@ $app = new \OCA\Passman\AppInfo\Application();
$app->registerNavigationEntry();
$app->registerPersonalPage();
$l = \OC::$server->getL10N('passman');
$manager = \OC::$server->getNotificationManager();
$manager->registerNotifier(function() {
return new Notifier(
\OC::$server->getL10NFactory()
);
}, function() use ($l) {
return [
'id' => 'passman',
'name' => $l->t('Passwords'),
];
});
$manager->registerNotifierService(Notifier::class);
/**
* Loading translations

View file

@ -37,7 +37,7 @@ class Notifier implements INotifier {
* @param INotification $notification
* @param string $languageCode The code of the language that should be used to prepare the notification
*/
public function prepare(INotification $notification, $languageCode) {
public function prepare(INotification $notification, string $languageCode): INotification {
if ($notification->getApp() !== 'passman') {
// Not my app => throw
throw new \InvalidArgumentException();
@ -109,4 +109,22 @@ class Notifier implements INotifier {
throw new \InvalidArgumentException();
}
}
}
/**
* Identifier of the notifier
*
* @return string
*/
public function getID(): string {
return 'passman';
}
/**
* Human readable name describing the notifier
*
* @return string
*/
public function getName(): string {
return $this->factory->get('passman')->t('Passwords');
}
}