src/Eccube/Form/Type/Master/PaymentType.php line 21

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\Master;
  13. use Doctrine\ORM\EntityRepository;
  14. use Eccube\Form\Type\MasterType;
  15. use Symfony\Component\Form\AbstractType;
  16. use Symfony\Component\OptionsResolver\OptionsResolver;
  17. class PaymentType extends AbstractType
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function configureOptions(OptionsResolver $resolver)
  23.     {
  24.         $resolver->setDefaults([
  25.             'class' => 'Eccube\Entity\Payment',
  26.             'choice_label' => 'method',
  27.             'placeholder' => '-',
  28.             // fixme 何故かここはDESC
  29.             'query_builder' => function (EntityRepository $er) {
  30.                 return $er->createQueryBuilder('m')
  31.                     ->orderBy('m.sort_no''DESC');
  32.             },
  33.         ]);
  34.     }
  35.     /**
  36.      * {@inheritdoc}
  37.      */
  38.     public function getBlockPrefix()
  39.     {
  40.         return 'payment';
  41.     }
  42.     /**
  43.      * {@inheritdoc}
  44.      */
  45.     public function getParent()
  46.     {
  47.         return MasterType::class;
  48.     }
  49. }