admin: add household position and relation admin

This commit is contained in:
nobohan
2022-05-05 18:31:08 +02:00
parent 9ce7f10415
commit 7907e4a050
15 changed files with 370 additions and 21 deletions

View File

@@ -0,0 +1,47 @@
<?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\Household\Position;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\NumberType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class HouseholdPositionType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('label', TranslatableStringFormType::class)
->add('allowHolder', CheckboxType::class, [
'required' => false,
'label' => 'household.allowHolder',
])
->add('shareHousehold', CheckboxType::class, [
'required' => false,
'label' => 'household.shareHousehold',
])
->add('ordering', NumberType::class, [
'required' => true,
'scale' => 5,
]);
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver
->setDefault('class', Position::class);
}
}

View File

@@ -27,7 +27,7 @@ class OriginType extends AbstractType
->add('noActiveAfter', ChillDateType::class, [
'required' => false,
'input' => 'datetime_immutable',
'label' => 'origin.noActiveAfter'
'label' => 'origin.noActiveAfter',
]);
}

View File

@@ -25,11 +25,11 @@ class PersonResourceKindType extends AbstractType
$builder
->add('title', TranslatableStringFormType::class)
->add('isActive', ChoiceType::class, [
'choices' => [
'Active' => true,
'Inactive' => false,
],
]);
'choices' => [
'Active' => true,
'Inactive' => false,
],
]);
}
public function configureOptions(OptionsResolver $resolver)

View File

@@ -0,0 +1,42 @@
<?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\Relationships\Relation;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class RelationType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', TranslatableStringFormType::class, [
'label' => 'relation.title',
])
->add('reverseTitle', TranslatableStringFormType::class, [
'label' => 'relation.reverseTitle',
])
->add('isActive', CheckboxType::class, [
'required' => false,
]);
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver
->setDefault('class', Relation::class);
}
}