reformat edit forms (#1192)

This commit is contained in:
Kevin Papst
2019-10-30 13:59:53 +01:00
committed by GitHub
parent ed1154af67
commit bda9584346
8 changed files with 279 additions and 8 deletions

View File

@@ -43,6 +43,7 @@ trait EntityFormTrait
])
->add('timeBudget', DurationType::class, [
'label' => 'label.timeBudget',
'icon' => 'clock',
'required' => false,
])
;

View File

@@ -0,0 +1,47 @@
<?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\Extension;
use Symfony\Component\Form\AbstractTypeExtension;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\FormView;
use Symfony\Component\OptionsResolver\OptionsResolver;
/**
* Allows to register custom icons at form fields
*/
class IconExtension extends AbstractTypeExtension
{
public static function getExtendedTypes(): iterable
{
return [TextType::class];
}
/**
* @param FormView $view
* @param FormInterface $form
* @param array $options
*/
public function buildView(FormView $view, FormInterface $form, array $options)
{
$view->vars['icon'] = $options['icon'] ?? null;
}
/**
* @param OptionsResolver $resolver
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefined(['icon']);
$resolver->setAllowedTypes('icon', 'string');
$resolver->setDefault('icon', '');
}
}

View File

@@ -0,0 +1,35 @@
<?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\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\OptionsResolver\OptionsResolver;
class AvatarType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'label' => 'label.avatar',
]);
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return TextType::class;
}
}

View File

@@ -10,6 +10,7 @@
namespace App\Form;
use App\Entity\User;
use App\Form\Type\AvatarType;
use App\Form\Type\YesNoType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
@@ -36,8 +37,7 @@ class UserEditType extends AbstractType
'label' => 'label.title',
'required' => false,
])
->add('avatar', TextType::class, [
'label' => 'label.avatar',
->add('avatar', AvatarType::class, [
'required' => false,
])
->add('email', EmailType::class, [