<?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\Front;
use Eccube\Common\EccubeConfig;
use Eccube\Form\Validator\Email;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Security\Http\Authentication\AuthenticationUtils;
use Symfony\Component\Validator\Constraints as Assert;
class CustomerLoginType extends AbstractType
{
/**
* @var EccubeConfig
*/
protected $eccubeConfig;
/**
* @var AuthenticationUtils
*/
protected $authenticationUtils;
public function __construct(AuthenticationUtils $authenticationUtils, EccubeConfig $eccubeConfig)
{
$this->authenticationUtils = $authenticationUtils;
$this->eccubeConfig = $eccubeConfig;
}
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('login_email', EmailType::class, [
'attr' => [
'maxlength' => $this->eccubeConfig['eccube_stext_len'],
],
'constraints' => [
new Assert\NotBlank(),
new Email(null, null, $this->eccubeConfig['eccube_rfc_email_check'] ? 'strict' : null),
],
'data' => $this->authenticationUtils->getLastUsername(),
]);
$builder->add('login_memory', CheckboxType::class, [
'required' => false,
]);
$builder->add('login_pass', PasswordType::class, [
'attr' => [
'maxlength' => $this->eccubeConfig['eccube_stext_len'],
],
'constraints' => [
new Assert\NotBlank(),
],
]);
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'customer_login';
}
}