murph-core/src/core/Event/Setting/SettingEvent.php
2023-10-12 16:15:07 +02:00

36 lines
637 B
PHP

<?php
namespace App\Core\Event\Setting;
use Symfony\Contracts\EventDispatcher\Event;
/**
* class SettingEvent.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class SettingEvent extends Event
{
public const INIT_EVENT = 'setting_event.init';
public const FORM_INIT_EVENT = 'setting_event.form_init';
protected $data;
public function __construct($data = null)
{
$this->data = $data;
}
public function getData()
{
return $this->data;
}
public function setOption(string $key, $value): self
{
$this->data['options'][$key] = $value;
return $this;
}
}