src/Eccube/Form/Type/PriceType.php line 26

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\Type;
  13. use Eccube\Common\EccubeConfig;
  14. use Symfony\Component\DependencyInjection\ContainerInterface;
  15. use Symfony\Component\Form\AbstractType;
  16. use Symfony\Component\Form\Extension\Core\Type\MoneyType;
  17. use Symfony\Component\Intl\Currencies;
  18. use Symfony\Component\OptionsResolver\Options;
  19. use Symfony\Component\OptionsResolver\OptionsResolver;
  20. use Symfony\Component\Validator\Constraints\NotBlank;
  21. use Symfony\Component\Validator\Constraints\Range;
  22. class PriceType extends AbstractType
  23. {
  24.     /**
  25.      * @var EccubeConfig
  26.      */
  27.     protected $eccubeConfig;
  28.     /**
  29.      * @var ContainerInterface
  30.      */
  31.     protected $container;
  32.     /**
  33.      * PriceType constructor.
  34.      *
  35.      * @param EccubeConfig $eccubeConfig
  36.      */
  37.     public function __construct(EccubeConfig $eccubeConfigContainerInterface $container)
  38.     {
  39.         $this->eccubeConfig $eccubeConfig;
  40.         $this->container $container;
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      */
  45.     public function configureOptions(OptionsResolver $resolver)
  46.     {
  47.         $currency $this->container->getParameter('currency');
  48.         $scale Currencies::getFractionDigits($currency);
  49.         $max $this->eccubeConfig['eccube_price_max'];
  50.         $min = -$max;
  51.         $constraints = function (Options $options) use ($max$min) {
  52.             $constraints = [];
  53.             // requiredがtrueに指定されている場合, NotBlankを追加
  54.             if (isset($options['required']) && true === $options['required']) {
  55.                 $constraints[] = new NotBlank();
  56.             }
  57.             if (isset($options['accept_minus']) && true === $options['accept_minus']) {
  58.                 $constraints[] = new Range([
  59.                     'min' => $min,
  60.                     'max' => $max,
  61.                 ]);
  62.             } else {
  63.                 $constraints[] = new Range(['min' => 0'max' => $max]);
  64.             }
  65.             return $constraints;
  66.         };
  67.         $resolver->setDefaults(
  68.             [
  69.                 'currency' => $currency,
  70.                 'scale' => $scale,
  71.                 'grouping' => true,
  72.                 'constraints' => $constraints,
  73.                 'accept_minus' => false// マイナス値を許容するかどうか
  74.             ]
  75.         );
  76.     }
  77.     /**
  78.      * {@inheritdoc}
  79.      */
  80.     public function getParent()
  81.     {
  82.         return MoneyType::class;
  83.     }
  84.     /**
  85.      * {@inheritdoc}
  86.      */
  87.     public function getBlockPrefix()
  88.     {
  89.         return 'price';
  90.     }
  91. }