src/Eccube/Form/EventListener/HTMLPurifierListener.php line 32

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Form\EventListener;
  13. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  14. use Symfony\Component\Form\FormEvent;
  15. use Symfony\Component\Form\FormEvents;
  16. class HTMLPurifierListener implements EventSubscriberInterface
  17. {
  18.     /**
  19.      * @return array[]
  20.      */
  21.     public static function getSubscribedEvents(): array
  22.     {
  23.         return [
  24.             FormEvents::PRE_SUBMIT => ['purifySubmittedData'/* as soon as possible */ 1000001],
  25.         ];
  26.     }
  27.     public function purifySubmittedData(FormEvent $event): void
  28.     {
  29.         $event->setData(str_replace(['<''>''&'], ['<''>''&'], $event->getData()));
  30.     }
  31. }