Drupal is a registered trademark of Dries Buytaert
cms 2.1.0 Update released for Drupal core (2.1.0)! bootstrap 8.x-3.40 Minor update available for theme bootstrap (8.x-3.40). menu_link_attributes 8.x-1.7 Minor update available for module menu_link_attributes (8.x-1.7). editoria11y 2.2.22 Minor update available for module editoria11y (2.2.22). ai 1.2.13 Minor update available for module ai (1.2.13). ai 1.3.2 Minor update available for module ai (1.3.2). moderated_content_bulk_publish 2.0.51 Minor update available for module moderated_content_bulk_publish (2.0.51). moderated_content_bulk_publish 2.0.50 Minor update available for module moderated_content_bulk_publish (2.0.50). editoria11y 2.2.21 Minor update available for module editoria11y (2.2.21). eca 3.1.0 Minor update available for module eca (3.1.0). sophron 3.1.1 Minor update available for module sophron (3.1.1). ai 1.3.1 Minor update available for module ai (1.3.1). seven 2.0.0-beta6 New beta version released for theme seven (2.0.0-beta6). seven 1.0.1-beta1 First beta version released for theme seven (1.0.1-beta1). layout_paragraphs 3.0.0-beta1 First beta version released for module layout_paragraphs (3.0.0-beta1). raven 7.3.8 Minor update available for module raven (7.3.8). bamboo_twig 6.0.7 Minor update available for module bamboo_twig (6.0.7). ebt_core 1.4.38 Minor update available for module ebt_core (1.4.38). ept_core 1.4.24 Minor update available for module ept_core (1.4.24). block_exclude_pages 2.2.2 Minor update available for module block_exclude_pages (2.2.2).

The Webform Conditions module adds Webform conditions and validations to other forms.

It can also be used by other modules to map information about a Webform.

For use by developers.

Features

- Condition Application: Applies conditions from Webforms to other forms at the build stage.
- Dependency Mapping: Extracts and normalizes dependencies from form states.
- Validation: Validates forms based on extracted conditions.

Post-Installation

Applying Conditions

To apply conditions from a Webform to another form, you can use the `ConditionsBuilder` service. Here is an example of how you might do this in a custom module:

use Drupal\webform_conditions\Service\ConditionsBuilder;

// Inject ConditionsBuilder service.
$conditions_builder = \Drupal::service('webform_conditions.conditions_builder');

// Assume $form and $form_state are your form and form state objects.
// Assume $webform is the Webform entity with conditions you want to apply.

$form = $conditions_builder->build($form, $form_state, $webform);

Validation

To validate a form based on extracted conditions, use the `ConditionsValidator` service. Here is an example:

use Drupal\webform_conditions\Service\ConditionsValidator;

// Inject ConditionsValidator service.
$conditions_validator = \Drupal::service('webform_conditions.conditions_validator');

// Assume $form and $form_state are your form and form state objects.
// Assume $webform is the Webform entity with conditions you want to apply.

$conditions_validator->validateForm($form, $form_state, $webform);

Activity

Total releases
2
First release
Apr 2026
Latest release
19 hours ago
Release cadence
0 days
Stability
50% stable

Releases

Version Type Release date
1.0.0 Stable Apr 7, 2026
1.0.x-dev Dev Apr 7, 2026