Merge pull request #19092 from owncloud/allow-checking-for-notifiers

Allow checking whether there are notifiers registered
remotes/origin/db-empty-migrate
Thomas Müller 11 years ago
commit 0eb37e2d64
  1. 6
      lib/private/notification/imanager.php
  2. 8
      lib/private/notification/manager.php

@ -53,4 +53,10 @@ interface IManager extends IApp, INotifier {
* @since 8.2.0
*/
public function createNotification();
/**
* @return bool
* @since 8.2.0
*/
public function hasNotifiers();
}

@ -112,6 +112,14 @@ class Manager implements IManager {
return new Notification();
}
/**
* @return bool
* @since 8.2.0
*/
public function hasNotifiers() {
return !empty($this->notifiersClosures);
}
/**
* @param INotification $notification
* @return null

Loading…
Cancel
Save