murph-doc/docs/utils/form.md
Simon Vieille acd8b2a20c
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
add doc about form helpers
2023-10-11 23:30:42 +02:00

1.2 KiB

Form

File picker

Murph provides a file picker using the file manager system: App\Core\Form\FileManager\FilePickerType. It allows you to pick an existing file or upload it. After saving, the file is previewed if possible.

Collection

When you need to manage a collection in a form, you can use App\Core\Form\Type\CollectionType with these options:

Option Type Default Description
collection_name string null Unique name of the collection
label_add string Add Unique name of the collection
label_delete string Delete Unique name of the collection
template_before_item string null A template included before an existing itam of the collection
template_after_item string null A template included after an existing itam of the collection

...and and all options of a symfony collection type.