![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/LeadBundle/Provider/ |
<?php declare(strict_types=1); namespace Mautic\LeadBundle\Provider; use Mautic\LeadBundle\Event\LeadListFiltersOperatorsEvent; use Mautic\LeadBundle\LeadEvents; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Contracts\Translation\TranslatorInterface; final class FilterOperatorProvider implements FilterOperatorProviderInterface { /** * @var mixed[] */ private array $cachedOperators = []; public function __construct( private EventDispatcherInterface $dispatcher, private TranslatorInterface $translator ) { } /** * @return mixed[] */ public function getAllOperators(): array { if (empty($this->cachedOperators)) { $event = new LeadListFiltersOperatorsEvent([], $this->translator); $this->dispatcher->dispatch($event, LeadEvents::LIST_FILTERS_OPERATORS_ON_GENERATE); $this->cachedOperators = $this->translateOperatorLabels($event->getOperators()); } return $this->cachedOperators; } /** * @param mixed[] $operators * * @return mixed[] */ private function translateOperatorLabels(array $operators): array { foreach ($operators as $key => $operatorSettings) { $operators[$key]['label'] = $this->translator->trans($operatorSettings['label']); } return $operators; } }