Eccube\Form\Type\OrderMailType::buildForm PHP Method

buildForm() public method

public buildForm ( Symfony\Component\Form\FormBuilderInterface $builder, array $options )
$builder Symfony\Component\Form\FormBuilderInterface
$options array
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('template', 'mail_template', array('label' => 'テンプレート', 'required' => true, 'mapped' => false))->add('subject', 'text', array('label' => 'タイトル', 'required' => true, 'constraints' => array(new Assert\NotBlank())))->add('header', 'textarea', array('label' => 'ヘッダー', 'required' => true, 'constraints' => array(new Assert\NotBlank())))->add('footer', 'textarea', array('label' => 'フッター', 'required' => true, 'constraints' => array(new Assert\NotBlank())))->add('footer', 'textarea', array('label' => 'フッター', 'required' => true, 'constraints' => array(new Assert\NotBlank())));
    }