vendor/netzmacht/contao-toolkit/src/Dca/Formatter/Subscriber/CreateFormatterSubscriber.php line 66

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Netzmacht\Contao\Toolkit\Dca\Formatter\Subscriber;
  4. use Netzmacht\Contao\Toolkit\Dca\Formatter\Event\CreateFormatterEvent;
  5. use Netzmacht\Contao\Toolkit\Dca\Formatter\Value\ValueFormatter;
  6. /**
  7.  * Class CreateFormatterSubscriber handles the create formatter event.
  8.  */
  9. final class CreateFormatterSubscriber
  10. {
  11.     /**
  12.      * List of supported value formatter.
  13.      *
  14.      * @var array|ValueFormatter[]
  15.      */
  16.     private $formatter;
  17.     /**
  18.      * Value formatter pre filters.
  19.      *
  20.      * @var array|ValueFormatter[]
  21.      */
  22.     private $preFilters;
  23.     /**
  24.      * Value formatter post filters.
  25.      *
  26.      * @var array|ValueFormatter[]
  27.      */
  28.     private $postFilters;
  29.     /**
  30.      * Value formatter.
  31.      *
  32.      * @var ValueFormatter
  33.      */
  34.     private $optionsFormatter;
  35.     /**
  36.      * @param array|ValueFormatter[] $formatter        Value formatter.
  37.      * @param array|ValueFormatter[] $preFilters       Pre filters.
  38.      * @param array|ValueFormatter[] $postFilters      Post filters.
  39.      * @param ValueFormatter         $optionsFormatter Options formatter.
  40.      */
  41.     public function __construct(
  42.         array $formatter,
  43.         array $preFilters,
  44.         array $postFilters,
  45.         ValueFormatter $optionsFormatter
  46.     ) {
  47.         $this->formatter        $formatter;
  48.         $this->preFilters       $preFilters;
  49.         $this->postFilters      $postFilters;
  50.         $this->optionsFormatter $optionsFormatter;
  51.     }
  52.     /**
  53.      * Handle the create formatter event.
  54.      *
  55.      * @param CreateFormatterEvent $event The handled event.
  56.      */
  57.     public function handle(CreateFormatterEvent $event): void
  58.     {
  59.         $event->addFormatter($this->formatter);
  60.         $event->addPreFilters($this->preFilters);
  61.         $event->addPostFilters($this->postFilters);
  62.         if ($event->getOptionsFormatter()) {
  63.             return;
  64.         }
  65.         $event->setOptionsFormatter($this->optionsFormatter);
  66.     }
  67. }