|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
namespace App\Form;
|
|
|
|
|
|
+use App\Entity\Commentaire;
|
|
|
use Symfony\Component\Form\Extension\Core\Type\NumberType;
|
|
|
use Symfony\Component\Form\AbstractType;
|
|
|
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
|
|
@@ -18,10 +19,10 @@ class CommentaireType extends AbstractType
|
|
|
public function buildForm(FormBuilderInterface $builder, array $options): void
|
|
|
{
|
|
|
$builder
|
|
|
- ->add('note', NumberType::class, array (
|
|
|
+ ->add('note', NumberType::class, [
|
|
|
'required' => false,
|
|
|
'label' => false,
|
|
|
- 'attr' => array (
|
|
|
+ 'attr' => [
|
|
|
'min' => 0,
|
|
|
'max' => 5,
|
|
|
'class' => "rating",
|
|
@@ -30,17 +31,21 @@ class CommentaireType extends AbstractType
|
|
|
'data-show-caption' => "false",
|
|
|
'data-size' => "sm",
|
|
|
'data-theme' => "krajee-fa"
|
|
|
- )
|
|
|
- ))
|
|
|
- ->add('contenu', TextareaType::class, array(
|
|
|
+ ]
|
|
|
+ ])
|
|
|
+ ->add('contenu', TextareaType::class, [
|
|
|
'required' => false,
|
|
|
- 'label' => false
|
|
|
- ))
|
|
|
- ->add('save', SubmitType::class, array(
|
|
|
+ 'label' => false,
|
|
|
+ 'attr' => [
|
|
|
+ 'rows' => 10
|
|
|
+ ]
|
|
|
+ ])
|
|
|
+ ->add('save', SubmitType::class, [
|
|
|
'label' => 'Enregistrer le commentaire',
|
|
|
- 'attr'=>array(
|
|
|
+ 'attr' => [
|
|
|
'class' => 'btn-primary'
|
|
|
- )));
|
|
|
+ ]
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -49,7 +54,7 @@ class CommentaireType extends AbstractType
|
|
|
public function configureOptions(OptionsResolver $resolver): void
|
|
|
{
|
|
|
$resolver->setDefaults([
|
|
|
- 'data_class' => 'App\Entity\Commentaire',
|
|
|
+ 'data_class' => Commentaire::class,
|
|
|
]);
|
|
|
}
|
|
|
|