src/Eccube/Form/EventListener/TruncateHyphenListener.php line 35

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 TruncateHyphenListener implements EventSubscriberInterface
  17. {
  18.     /**
  19.      * @return array
  20.      */
  21.     public static function getSubscribedEvents()
  22.     {
  23.         return [
  24.             FormEvents::PRE_SUBMIT => 'onPreSubmit',
  25.         ];
  26.     }
  27.     /**
  28.      * @param FormEvent $event
  29.      */
  30.     public function onPreSubmit(FormEvent $event)
  31.     {
  32.         $data $event->getData();
  33.         $data str_replace('-'''$data);
  34.         $event->setData($data);
  35.     }
  36. }