57 lines
1.3 KiB
PHP
57 lines
1.3 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\Event;
|
|
|
|
use App\Form\Model\SystemConfiguration;
|
|
use Symfony\Contracts\EventDispatcher\Event;
|
|
|
|
/**
|
|
* This event should be used, if system configurations should be changed/added dynamically.
|
|
*/
|
|
final class SystemConfigurationEvent extends Event
|
|
{
|
|
/**
|
|
* @deprecated since 1.4, will be removed with 2.0
|
|
*/
|
|
public const CONFIGURE = SystemConfigurationEvent::class;
|
|
|
|
/**
|
|
* @var SystemConfiguration[]
|
|
*/
|
|
protected $preferences;
|
|
|
|
/**
|
|
* @param SystemConfiguration[] $configurations
|
|
*/
|
|
public function __construct(array $configurations)
|
|
{
|
|
$this->preferences = $configurations;
|
|
}
|
|
|
|
/**
|
|
* @return SystemConfiguration[]
|
|
*/
|
|
public function getConfigurations()
|
|
{
|
|
return $this->preferences;
|
|
}
|
|
|
|
/**
|
|
* @param SystemConfiguration $configuration
|
|
* @return SystemConfigurationEvent
|
|
*/
|
|
public function addConfiguration(SystemConfiguration $configuration): SystemConfigurationEvent
|
|
{
|
|
$this->preferences[] = $configuration;
|
|
|
|
return $this;
|
|
}
|
|
}
|