<?php
/**
* @author Quentin CHATELAIN (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\LabelsBundle\EventSubscriber;
use App\Event\BundleRolesEvent;
use Symfony\Contracts\Translation\TranslatorInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class BundleRolesSubscriber implements EventSubscriberInterface
{
/**
* @var TranslatorInterface
*/
private TranslatorInterface $tr;
/**
* @param TranslatorInterface $tr
*/
public function __construct(
TranslatorInterface $tr
) {
$this->tr = $tr;
}
/**
* @return string[]
*/
public static function getSubscribedEvents(): array
{
return [
BundleRolesEvent::NAME => 'onLoad'
];
}
/**
* @param BundleRolesEvent $event
* @return void
*/
public function onLoad(BundleRolesEvent $event): void
{
$bundles = $event->getBundles();
$bundles[] = [
'select_name' => 'labels',
'name' => $this->tr->trans('Labels', [], 'LabelsBundle')
];
$event->setBundles($bundles);
}
}