67 lines
1.1 KiB
PHP
67 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace OCA\Radio\Dashboard;
|
|
|
|
use OCP\Dashboard\IWidget;
|
|
use OCP\IL10N;
|
|
use OCP\IURLGenerator;
|
|
use OCP\Util;
|
|
|
|
use OCA\Radio\AppInfo\Application;
|
|
|
|
class RadioWidget implements IWidget {
|
|
|
|
/** @var IL10N */
|
|
private $l10n;
|
|
|
|
public function __construct(
|
|
IL10N $l10n
|
|
) {
|
|
$this->l10n = $l10n;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getId(): string {
|
|
return Application::APP_ID;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getTitle(): string {
|
|
return $this->l10n->t('Radio stations');
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getOrder(): int {
|
|
return 10;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getIconClass(): string {
|
|
return 'icon-radio';
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getUrl(): ?string {
|
|
return \OC::$server->getURLGenerator()->linkToRoute('radio.page.index');
|
|
// return $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute('radio.page.index'));
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function load(): void {
|
|
Util::addScript(Application::APP_ID, 'dashboard');
|
|
Util::addStyle(Application::APP_ID, 'dashboard');
|
|
}
|
|
}
|