app/Plugin/Noshidelivery/Form/Type/Master/NoshideliveryCheckType.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 Plugin\Noshidelivery\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. /**
  18.  * Class NoshideliveryCheckType
  19.  */
  20. class NoshideliveryCheckType extends AbstractType
  21. {
  22.     /**
  23.      * {@inheritdoc}
  24.      */
  25.     public function configureOptions(OptionsResolver $resolver)
  26.     {
  27.         $resolver->setDefaults([
  28.             'class' => 'Plugin\Noshidelivery\Entity\NoshideliveryCheck',
  29.             'placeholder' => 'common.select__unspecified',
  30.             'query_builder' => function (EntityRepository $er) {
  31.                 return $er->createQueryBuilder('c')
  32.                     ->orderBy('c.sort_no''DESC');
  33.             },
  34.         ]);
  35.     }
  36.     /**
  37.      * {@inheritdoc}
  38.      */
  39.     public function getBlockPrefix()
  40.     {
  41.         return 'noshidelivery_check';
  42.     }
  43.     /**
  44.      * {@inheritdoc}
  45.      */
  46.     public function getParent()
  47.     {
  48.         return MasterType::class;
  49.     }
  50. }