Process form¶
Available since: 1.0.0
Provided tokens
| Token | Description |
|---|---|
[form] |
The current form. Alias: current_form |
[form:id] |
The form ID. |
[form:base_id] |
The form base ID. |
[form:operation] |
The form operation. |
[form:mode] |
The form mode. |
[form:triggered] |
The form field name that triggered the form event. |
[form:values] |
|
[form:values:FIELD_NAME] |
The field value for each of the named fields. |
[form:num_errors] |
The number of form errors. |
[event] |
The event. |
[event:machine_name] |
The machine name of the ECA event. |
[session_user] |
The user account that dispatched the event, regardless if ECA is processing models under a different account. This is only available if ECA is configured to always run under a specific account. |
Fires during the form #process phase, after form building is complete. At this stage, Drupal's built-in process callbacks have already expanded compound elements (e.g., individual radio buttons within a radios group are now available).
Tip
This is the most commonly used form event for manipulating form field values, access, options, and labels.
Fields¶
Restrict by form ID-
The form ID can be mostly found in the HTML <form> element as "id" attribute.
Comma-separated list of form IDs. You can use either the HTML form ID (with hyphens) or the Drupal machine name (with underscores). Matching also works on the base form ID (e.g.,
node_formmatches all node entity forms regardless of bundle). Restrict by entity type ID-
Example: node, taxonomy_term, user
Only fires for entity forms. Restricts to the specified entity type (e.g.,
node,taxonomy_term,user).
Tip
When left empty along with bundle and operation, the event also fires for non-entity forms.
Restrict by entity bundle-
Example: article, tags
Only applies to entity forms. Restricts to the specified bundle (e.g.,
article,tags). Comma-separated for multiple values. Restrict by operation-
Example: default, save, delete
Only applies to entity forms. Restricts to the specified form operation (e.g.,
default,edit,delete). Comma-separated for multiple values.