admin: add AccompanyingPeriod Origin and closingMotive

This commit is contained in:
nobohan
2022-05-05 14:37:56 +02:00
parent 5daf09334b
commit 2fbdd169df
13 changed files with 202 additions and 94 deletions

View File

@@ -0,0 +1,39 @@
<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\PersonBundle\Form;
use Chill\MainBundle\Form\Type\ChillDateType;
use Chill\MainBundle\Form\Type\TranslatableStringFormType;
use Chill\PersonBundle\Entity\AccompanyingPeriod\Origin;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class OriginType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label', TranslatableStringFormType::class)
->add('noActiveAfter', ChillDateType::class, [
'required' => false,
'input' => 'datetime_immutable',
'label' => 'origin.noActiveAfter'
]);
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver
->setDefault('class', Origin::class);
}
}