src/Eccube/Form/Type/Admin/CsvImportType.php line 24

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\Admin;
  13. use Eccube\Common\EccubeConfig;
  14. use Symfony\Component\Form\AbstractType;
  15. use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
  16. use Symfony\Component\Form\Extension\Core\Type\FileType;
  17. use Symfony\Component\Form\Extension\Core\Type\IntegerType;
  18. use Symfony\Component\Form\FormBuilderInterface;
  19. use Symfony\Component\Validator\Constraints as Assert;
  20. class CsvImportType extends AbstractType
  21. {
  22.     /**
  23.      * @var int CSVの最大アップロードサイズ
  24.      */
  25.     private $csvMaxSize;
  26.     /**
  27.      * CsvImportType constructor.
  28.      *
  29.      * @param EccubeConfig $eccubeConfig
  30.      */
  31.     public function __construct(EccubeConfig $eccubeConfig)
  32.     {
  33.         $this->csvMaxSize $eccubeConfig['eccube_csv_size'];
  34.     }
  35.     /**
  36.      * {@inheritdoc}
  37.      */
  38.     public function buildForm(FormBuilderInterface $builder, array $options)
  39.     {
  40.         $builder
  41.             ->add('import_file'FileType::class, [
  42.                 'label' => false,
  43.                 'mapped' => false,
  44.                 'required' => true,
  45.                 'constraints' => [
  46.                     new Assert\NotBlank(),
  47.                     new Assert\File([
  48.                         'maxSize' => $this->csvMaxSize.'M',
  49.                     ]),
  50.                 ],
  51.             ])
  52.             ->add('is_split_csv'CheckboxType::class, [
  53.                 'label' => false,
  54.                 'mapped' => false,
  55.                 'required' => false,
  56.             ])
  57.             ->add('csv_file_no'IntegerType::class, [
  58.                 'label' => false,
  59.                 'mapped' => false,
  60.                 'required' => false,
  61.             ]);
  62.     }
  63.     /**
  64.      * {@inheritdoc}
  65.      */
  66.     public function getBlockPrefix()
  67.     {
  68.         return 'admin_csv_import';
  69.     }
  70. }