1.0x branch of the form_decorator project

Created on 31 January 2025, 2 months ago

In Drupal forms are provided by form classes. In the form class you have to provide several methods:
getFormId()
buildForm()
validateForm()
submitForm()
It is also possible to inject services using dependency injection and to implement additional methods that are useful for this form.

That is very nice! But there is no easy way to extend a form class. If you want to alter a form you have to rely on hook_form_alter. Of course that works just fine but you loose all the nice features of the original form class (No object, no dependency injection, you have to change submit/validation handlers).

The form_decorator module https://www.drupal.org/project/form_decorator → introduces an easy way to change the form class itself. And because we want to be able to alter one form multiple times we use decoration.

In short: The key benefit over hook_form_alter hooks and event based solutions like https://www.drupal.org/project/hook_event_dispatcher → is that in a decorator you can in principle work like you would in the form class itself.

📌 Task
Status

Needs review

Component

module

Created by

🇩🇪Germany Harlor Berlin

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024