mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-17 17:28:02 +00:00
33 lines
606 B
PHP
33 lines
606 B
PHP
<?php
|
|
|
|
namespace OCA\Forum\Sections;
|
|
|
|
use OCA\Forum\AppInfo;
|
|
use OCP\IL10N;
|
|
use OCP\IURLGenerator;
|
|
use OCP\Settings\IIconSection;
|
|
|
|
class AdminSection implements IIconSection {
|
|
public function __construct(
|
|
private IL10N $l,
|
|
private IURLGenerator $urlGenerator,
|
|
) {
|
|
}
|
|
|
|
public function getIcon(): string {
|
|
return $this->urlGenerator->imagePath(AppInfo\Application::APP_ID, 'app-dark.svg');
|
|
}
|
|
|
|
public function getID(): string {
|
|
return AppInfo\Application::APP_ID;
|
|
}
|
|
|
|
public function getName(): string {
|
|
return $this->l->t('Forum');
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 80;
|
|
}
|
|
}
|