File: /home/wbwebdes/domains/uren-registratie.blankevoort.net/public_html/src/Form/AccessTokenForm.php
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Form;
use App\Entity\AccessToken;
use App\Form\Type\DatePickerType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\GreaterThan;
final class AccessTokenForm extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('name', TextType::class, [
'required' => true,
])
->add('expiresAt', DatePickerType::class, [
'label' => 'expires',
'required' => false,
'force_time' => 'end',
'min_day' => $options['min_date'],
'constraints' => [
new GreaterThan($options['min_date'])
],
])
;
}
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => AccessToken::class,
'csrf_protection' => true,
'csrf_field_name' => '_token',
'csrf_token_id' => 'access_token_form',
'attr' => [
'data-form-event' => 'kimai.accessToken'
],
'min_date' => new \DateTimeImmutable('today 00:00:00'),
]);
$resolver->setAllowedTypes('min_date', [\DateTimeInterface::class]);
}
}