diff options
author | Joas Schilling <coding@schilljs.com> | 2016-10-05 11:03:48 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-10-05 11:38:06 +0200 |
commit | 671f16f7069dd070db63f9f13e0c1e8882c3d953 (patch) | |
tree | bcc57929c793f26258bcd1946048d1eb8a7c6dc0 /apps/files/lib | |
parent | 66ae43880b7d898e54a47d3a4651684d85a1e951 (diff) | |
download | nextcloud-server-671f16f7069dd070db63f9f13e0c1e8882c3d953.tar.gz nextcloud-server-671f16f7069dd070db63f9f13e0c1e8882c3d953.zip |
Add icons to activity navigation
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/Activity.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/lib/Activity.php b/apps/files/lib/Activity.php index b9cc98cf7ea..a5277a6c18b 100644 --- a/apps/files/lib/Activity.php +++ b/apps/files/lib/Activity.php @@ -306,6 +306,7 @@ class Activity implements IExtension { 'top' => [ self::FILTER_FAVORITES => [ 'id' => self::FILTER_FAVORITES, + 'icon' => 'icon-favorite', 'name' => (string) $this->l->t('Favorites'), 'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_FAVORITES]), ], @@ -313,6 +314,7 @@ class Activity implements IExtension { 'apps' => [ self::FILTER_FILES => [ 'id' => self::FILTER_FILES, + 'icon' => 'icon-files-dark', 'name' => (string) $this->l->t('Files'), 'url' => $this->URLGenerator->linkToRoute('activity.Activities.showList', ['filter' => self::FILTER_FILES]), ], |