Add some reworks to Vision

This commit is contained in:
Xbird
2022-03-28 16:00:38 +00:00
parent c9ae3f5ab6
commit 4a9aa158f6
14 changed files with 1155 additions and 1176 deletions

View File

@@ -17,19 +17,9 @@ class CriminalType extends DocumentType
$builder
->add('article', null, ['label' => 'form_label_article', 'help' => 'form_help_article'])
->add('content', ContentType::class, ['label' => 'form_label_informations' ])
->add('amountMoney', null, ['label' => 'form_label_amount', 'help' => 'form_help_amount'])
->add('amountTime', null, ['label' => 'form_label_time', 'help' => 'form_help_time'])
->add(
'accessorySentence',
ContentType::class,
['label' => 'form_label_accessorySentence',
'help' => 'form_help_accessorySentence',
'required' => false,
'attr' => ['style' => 'height: 200px;']
]
)
->add('content', ContentType::class, ['label' => 'form_label_informations', 'required' => false ])
;
}

View File

@@ -12,7 +12,6 @@ class FirstnameType extends AbstractType
{
$resolver->setDefaults([
'attr' => ['placeholder' => 'form_placeholder_firstname'],
'help' => 'form_help_firstname',
'label' => false
]);
}

View File

@@ -12,7 +12,6 @@ class LastnameType extends AbstractType
{
$resolver->setDefaults([
'attr' => ['placeholder' => 'form_placeholder_lastname'],
'help' => 'form_help_lastname',
'label' => false
]);
}