admin: add personresourcekind in the admin

This commit is contained in:
nobohan
2022-05-05 15:20:47 +02:00
parent 2fbdd169df
commit 9ce7f10415
8 changed files with 164 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?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\TranslatableStringFormType;
use Chill\PersonBundle\Entity\Person\PersonResourceKind;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class PersonResourceKindType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', TranslatableStringFormType::class)
->add('isActive', ChoiceType::class, [
'choices' => [
'Active' => true,
'Inactive' => false,
],
]);
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver
->setDefault('class', PersonResourceKind::class);
}
}