<?php
/*
* This file is part of EC-CUBE
*
* Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
*
* http://www.ec-cube.co.jp/
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Eccube\Form\Type\Master;
use Doctrine\ORM\EntityRepository;
use Eccube\Form\Type\MasterType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Class MailTemplateType
*/
class MailTemplateType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'class' => 'Eccube\Entity\MailTemplate',
'placeholder' => 'common.select',
// なぜかsortNoを持っていない
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('mt')
->orderBy('mt.id', 'ASC');
},
]);
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'mail_template';
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return MasterType::class;
}
}