app/Customize/Form/Type/Admin/BackupType.php line 41

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.lockon.co.jp/
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  */
  23. namespace Customize\Form\Type\Admin;
  24. use Eccube\Common\EccubeConfig;
  25. use Eccube\Form\DataTransformer;
  26. use Eccube\Application;
  27. use Symfony\Component\Form\AbstractType;
  28. use Symfony\Component\Form\CallbackTransformer;
  29. use Symfony\Component\Form\FormBuilderInterface;
  30. use Symfony\Component\Validator\Constraints as Assert;
  31. use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
  32. use Symfony\Component\Form\Extension\Core\Type\HiddenType;
  33. use Symfony\Bridge\Doctrine\Form\Type\EntityType;
  34. /**
  35.  * Class BackupType.
  36.  */
  37. class BackupType extends AbstractType
  38. {
  39.     /**
  40.      * @var EccubeConfig
  41.      */
  42.     protected $eccubeConfig;
  43.     /**
  44.      * BackupType constructor.
  45.      *
  46.      * @param EccubeConfig $eccubeConfig
  47.      */
  48.     public function __construct(EccubeConfig $eccubeConfig)
  49.     {
  50.         $this->eccubeConfig $eccubeConfig;
  51.     }
  52.     /**
  53.      * {@inheritdoc}
  54.      */
  55.     public function buildForm(FormBuilderInterface $builder, array $options)
  56.     {
  57.         $builder
  58.             ->add('migrate_data'EntityType::class, array(
  59.                 'required' => false,
  60.                 'class' => 'Customize\Entity\BackupData',
  61.                 'expanded' => true,
  62.                 'multiple' => true,
  63.                 'choice_label' => 'name',                
  64.                 'constraints' => array(
  65.                     new Assert\NotBlank(),
  66.                 ),
  67.             ))            
  68.             ->add('mode'HiddenType::class, array(
  69.                 'required' => true
  70.             ));
  71.     } 
  72.     /**
  73.      * {@inheritdoc}
  74.      */
  75.     public function getName()
  76.     {
  77.         return 'admin_backup_data';
  78.     }
  79. }