mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
133 lines
3.9 KiB
PHP
133 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\Form;
|
|
|
|
use Chill\MainBundle\Entity\Center;
|
|
use Symfony\Component\Form\AbstractType;
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
|
use Symfony\Component\Form\FormEvents;
|
|
use Symfony\Component\Form\FormEvent;
|
|
use Symfony\Component\Form\FormView;
|
|
use Symfony\Component\Form\FormInterface;
|
|
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
|
|
use Symfony\Component\Form\Extension\Core\Type\DateType;
|
|
use Chill\PersonBundle\Security\Authorization\PersonVoter;
|
|
use Chill\MainBundle\Form\Type\UserPickerType;
|
|
use Symfony\Component\Security\Core\Role\Role;
|
|
use Chill\PersonBundle\Form\Type\ClosingMotivePickerType;
|
|
|
|
/**
|
|
* Class AccompanyingPeriodType
|
|
*
|
|
* @package Chill\PersonBundle\Form
|
|
*/
|
|
class AccompanyingPeriodType extends AbstractType
|
|
{
|
|
/**
|
|
* array of configuration for accompanying_periods.
|
|
*
|
|
* Contains whether we should add fields some optional fields (optional per
|
|
* instance)
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $config = [];
|
|
|
|
/**
|
|
*
|
|
* @param string[] $config configuration of visibility of some fields
|
|
*/
|
|
public function __construct(array $config)
|
|
{
|
|
$this->config = $config;
|
|
}
|
|
|
|
/**
|
|
* @param FormBuilderInterface $builder
|
|
* @param array $options
|
|
*/
|
|
public function buildForm(FormBuilderInterface $builder, array $options)
|
|
{
|
|
//if the period_action is close, date opening should not be seen
|
|
if ($options['period_action'] !== 'close') {
|
|
$builder
|
|
->add('openingDate', DateType::class, [
|
|
"required" => true,
|
|
'widget' => 'single_text',
|
|
'format' => 'dd-MM-yyyy'
|
|
])
|
|
;
|
|
}
|
|
|
|
// closingDate should be seen only if
|
|
// period_action = close
|
|
// OR ( period_action = update AND accompanying period is already closed )
|
|
$accompanyingPeriod = $options['data'];
|
|
|
|
if (
|
|
($options['period_action'] === 'close')
|
|
OR
|
|
($options['period_action'] === 'create')
|
|
OR
|
|
($options['period_action'] === 'update' AND !$accompanyingPeriod->isOpen())
|
|
) {
|
|
|
|
$builder->add('closingDate', DateType::class, [
|
|
'required' => true,
|
|
'widget' => 'single_text',
|
|
'format' => 'dd-MM-yyyy'
|
|
]);
|
|
|
|
$builder->add('closingMotive', ClosingMotivePickerType::class);
|
|
}
|
|
|
|
if ($this->config['user'] === 'visible') {
|
|
$builder->add('user', UserPickerType::class, [
|
|
'center' => $options['center'],
|
|
'role' => new Role(PersonVoter::SEE),
|
|
]);
|
|
}
|
|
|
|
$builder->add('remark', TextareaType::class, [
|
|
'required' => false
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param OptionsResolver $resolver
|
|
*/
|
|
public function configureOptions(OptionsResolver $resolver)
|
|
{
|
|
$resolver->setDefaults([
|
|
'data_class' => 'Chill\PersonBundle\Entity\AccompanyingPeriod'
|
|
]);
|
|
|
|
$resolver
|
|
->setRequired(['period_action'])
|
|
->addAllowedTypes('period_action', 'string')
|
|
->addAllowedValues('period_action', ['update', 'open', 'close', 'create'])
|
|
->setRequired('center')
|
|
->setAllowedTypes('center', Center::class)
|
|
;
|
|
}
|
|
|
|
/**
|
|
* @param FormView $view
|
|
* @param FormInterface $form
|
|
* @param array $options
|
|
*/
|
|
public function buildView(FormView $view, FormInterface $form, array $options)
|
|
{
|
|
$view->vars['action'] = $options['period_action'];
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getBlockPrefix()
|
|
{
|
|
return 'chill_personbundle_accompanyingperiod';
|
|
}
|
|
}
|