mirror of
https://github.com/alrayyes/wiki.git
synced 2025-07-24 01:43:26 +00:00
Quartz sync: May 6, 2024, 10:40 PM
This commit is contained in:
parent
aee9145691
commit
4ef8371441
635 changed files with 22281 additions and 6 deletions
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
id: 7d7fc5e8-0fcd-47d7-8857-3f499655d7f2
|
||||
title: Callback Functions To Get/Set Form Fields
|
||||
---
|
||||
|
||||
# Description
|
||||
|
||||
Use callback functions to get/set form fields. Data mapper is no longer
|
||||
needed when getter/setter methods don't directly correlate to property
|
||||
names.
|
||||
|
||||
# Syntax
|
||||
|
||||
``` php
|
||||
// src/Form/Type/ProductType.php
|
||||
namespace App\Form\Type;
|
||||
|
||||
use App\Entity\Person;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\Form\FormInterface;
|
||||
|
||||
class PersonType extends AbstractType
|
||||
{
|
||||
public function buildForm(FormBuilderInterface $builder, array $options)
|
||||
{
|
||||
$builder
|
||||
->add('name', TextType::class, [
|
||||
'getter' => function (Person $person, FormInterface $form): string {
|
||||
return $person->getUserData()->getFirstName();
|
||||
},
|
||||
'setter' => function (Person &$person, ?string $name, FormInterface $form): void {
|
||||
$person->rename($name);
|
||||
},
|
||||
])
|
||||
|
||||
// ...
|
||||
;
|
||||
}
|
||||
|
||||
// ...
|
||||
}
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue