Files
nextcloud-pantry/lib/Sections/Admin.php

40 lines
790 B
PHP

<?php
declare(strict_types=1);
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\Pantry\Sections;
use OCA\Pantry\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('Pantry');
}
public function getPriority(): int {
return 80;
}
}