diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-05 11:25:26 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-05 11:30:53 +0100 |
commit | 733db5c14a5bf882fab5ba2401467771bc58ef63 (patch) | |
tree | 5659ff34027cb3be9ddac9705c899c457baa67dc /apps | |
parent | 070ff71a2d18aa0f94fac51c2caecdcea963887e (diff) | |
download | nextcloud-server-733db5c14a5bf882fab5ba2401467771bc58ef63.tar.gz nextcloud-server-733db5c14a5bf882fab5ba2401467771bc58ef63.zip |
Add a filter for comment activities
Diffstat (limited to 'apps')
-rw-r--r-- | apps/comments/activity/extension.php | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/apps/comments/activity/extension.php b/apps/comments/activity/extension.php index 3a298a414a2..b65f1911d17 100644 --- a/apps/comments/activity/extension.php +++ b/apps/comments/activity/extension.php @@ -26,6 +26,7 @@ use OCP\Activity\IManager; use OCP\Comments\ICommentsManager; use OCP\Comments\NotFoundException; use OCP\IL10N; +use OCP\IURLGenerator; use OCP\L10N\IFactory; /** @@ -48,15 +49,20 @@ class Extension implements IExtension { /** @var ICommentsManager */ protected $commentsManager; + /** @var IURLGenerator */ + protected $URLGenerator; + /** * @param IFactory $languageFactory * @param IManager $activityManager * @param ICommentsManager $commentsManager + * @param IURLGenerator $URLGenerator */ - public function __construct(IFactory $languageFactory, IManager $activityManager, ICommentsManager $commentsManager) { + public function __construct(IFactory $languageFactory, IManager $activityManager, ICommentsManager $commentsManager, IURLGenerator $URLGenerator) { $this->languageFactory = $languageFactory; $this->activityManager = $activityManager; $this->commentsManager = $commentsManager; + $this->URLGenerator = $URLGenerator; } protected function getL10N($languageCode = null) { @@ -214,7 +220,17 @@ class Extension implements IExtension { * @return array|false */ public function getNavigation() { - return false; + $l = $this->getL10N(); + return [ + 'apps' => [], + 'top' => [ + self::APP_NAME => [ + 'id' => self::APP_NAME, + 'name' => (string) $l->t('Comments'), + 'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::APP_NAME]), + ], + ], + ]; } /** @@ -224,7 +240,7 @@ class Extension implements IExtension { * @return boolean */ public function isFilterValid($filterValue) { - return false; + return $filterValue === self::APP_NAME; } /** @@ -236,6 +252,9 @@ class Extension implements IExtension { * @return array|false */ public function filterNotificationTypes($types, $filter) { + if ($filter === self::APP_NAME) { + return array_intersect($types, [self::APP_NAME]); + } return false; } |