mirror of
https://github.com/chenasraf/pantry-latch-example.git
synced 2026-05-17 17:28:03 +00:00
40 lines
829 B
PHP
40 lines
829 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// SPDX-FileCopyrightText: Your Name <your@email.com>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
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;
|
|
}
|
|
}
|