File: /home/wbwebdes/domains/uren-registratie.blankevoort.net/public_html/src/Plugin/Plugin.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\Plugin;
final class Plugin
{
private ?PluginMetadata $metadata = null;
public function __construct(private readonly PluginInterface $bundle)
{
}
public function getMetadata(): PluginMetadata
{
if ($this->metadata === null) {
$this->metadata = PluginMetadata::createFromPath($this->getPath());
}
return $this->metadata;
}
public function getPath(): string
{
return $this->bundle->getPath();
}
public function getName(): string
{
return $this->getMetadata()->getName();
}
public function getId(): string
{
return $this->bundle->getName();
}
}