mirror of
https://github.com/chenasraf/nextcloud-forum.git
synced 2026-05-17 17:28:02 +00:00
35 lines
702 B
PHP
35 lines
702 B
PHP
<?php
|
|
|
|
namespace OCA\NextcloudAppTemplate\Sections;
|
|
|
|
use OCA\NextcloudAppTemplate\AppInfo;
|
|
use OCP\IL10N;
|
|
use OCP\IURLGenerator;
|
|
use OCP\Settings\IIconSection;
|
|
|
|
class Admin implements IIconSection {
|
|
public function __construct(
|
|
private IL10N $l,
|
|
private IURLGenerator $urlGenerator,
|
|
) {
|
|
$this->l = $l;
|
|
$this->urlGenerator = $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('Nextcloud App Template');
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 80;
|
|
}
|
|
}
|