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

Allow checking whether there are notifiers registered
This commit is contained in:
Thomas Müller 2015-09-18 11:57:56 +02:00
commit 0eb37e2d64
2 changed files with 14 additions and 0 deletions

View File

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

View File

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