Release 2.0.32 (#4256)
This commit is contained in:
58
src/Calendar/CalendarSource.php
Normal file
58
src/Calendar/CalendarSource.php
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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\Calendar;
|
||||
|
||||
class CalendarSource
|
||||
{
|
||||
/** @var array<string, string|bool|int> */
|
||||
private array $options = [];
|
||||
|
||||
public function __construct(private CalendarSourceType $type, private string $id, private string $uri, private ?string $color = null)
|
||||
{
|
||||
}
|
||||
|
||||
public function getType(): CalendarSourceType
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
|
||||
public function getTypeName(): string
|
||||
{
|
||||
return $this->type->value;
|
||||
}
|
||||
|
||||
public function getId(): string
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getUri(): string
|
||||
{
|
||||
return $this->uri;
|
||||
}
|
||||
|
||||
public function getColor(): ?string
|
||||
{
|
||||
return $this->color;
|
||||
}
|
||||
|
||||
public function addOption(string $name, int|bool|string $value): void
|
||||
{
|
||||
$this->options[$name] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, bool|int|string>
|
||||
*/
|
||||
public function getOptions(): array
|
||||
{
|
||||
return $this->options;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user