Skip to content

Access to form fields with tokens

Version

You can apply this model as a recipe (Drupal 10.3 or later) to your own Drupal site:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Import recipe
composer require drupal-eca-recipe/eca_lib_0028

# Apply recipe with Drush (requires version 13 or later):
drush recipe ../recipes/eca_lib_0028

# Apply recipe without Drush:
cd web && php core/scripts/drupal recipe ../recipes/eca_lib_0028

# Rebuilding caches is optional, sometimes required:
drush cr

Purpose

This model demonstrates how to access form field values during validation or submission, how to find out the proper token syntax for each form field type, and also an alternative approach by building a temporary entity from form field values to use the more transparent entity token syntax.

In this video, see how easy it is to create this model and get precious insights into the inner workings of ECA. Watch now.

Dependencies

  • config
    • field.field.node.article.field_flag
    • field.field.node.article.field_text
    • field.field.node.location.field_flag
    • field.field.node.location.field_text
    • field.storage.node.field_flag
    • field.storage.node.field_text
    • node.type.article
    • node.type.location
  • module
    • eca_form
    • menu_ui
    • node

Used plugins

Events

Actions