summaryrefslogtreecommitdiffstats
path: root/lib/Settings/AdminSection.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Settings/AdminSection.php')
-rw-r--r--lib/Settings/AdminSection.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/Settings/AdminSection.php b/lib/Settings/AdminSection.php
new file mode 100644
index 000000000..f92c9a8a4
--- /dev/null
+++ b/lib/Settings/AdminSection.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace OCA\News\Settings;
+
+use OCP\IL10N;
+use OCP\IURLGenerator;
+use OCP\Settings\IIconSection;
+
+class AdminSection implements IIconSection
+{
+ private $l;
+ private $url;
+
+ public function __construct(IURLGenerator $url, IL10N $l)
+ {
+ $this->url = $url;
+ $this->l = $l;
+ }
+
+ public function getID()
+ {
+ return 'news';
+ }
+
+ public function getName()
+ {
+ return $this->l->t('News');
+ }
+
+ public function getPriority()
+ {
+ return 10;
+ }
+
+ public function getIcon()
+ {
+ return $this->url->imagePath('news', 'app-dark.svg');
+ }
+}