50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Widget;
|
|
|
|
/**
|
|
* @final
|
|
*/
|
|
class WidgetService
|
|
{
|
|
private array $widgets = [];
|
|
|
|
public function hasWidget(string $id): bool
|
|
{
|
|
return \array_key_exists($id, $this->widgets);
|
|
}
|
|
|
|
public function registerWidget(WidgetInterface $widget): void
|
|
{
|
|
$id = trim($widget->getId());
|
|
if ($id === '') {
|
|
throw new \InvalidArgumentException('Widget needs a non-empty ID');
|
|
}
|
|
$this->widgets[$id] = $widget;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, WidgetInterface>
|
|
*/
|
|
public function getAllWidgets(): array
|
|
{
|
|
return $this->widgets;
|
|
}
|
|
|
|
public function getWidget(string $id): WidgetInterface
|
|
{
|
|
if (!$this->hasWidget($id)) {
|
|
throw new \InvalidArgumentException(\sprintf('Cannot find widget: %s', $id));
|
|
}
|
|
|
|
return $this->widgets[$id];
|
|
}
|
|
}
|