Drupal is a registered trademark of Dries Buytaert
cms 2.1.2 Update released for Drupal core (2.1.2)! drupal 11.1.10 Update released for Drupal core (11.1.10)! drupal 10.5.10 Update released for Drupal core (10.5.10)! drupal 10.4.10 Update released for Drupal core (10.4.10)! drupal 11.2.12 Update released for Drupal core (11.2.12)! drupal 11.3.10 Update released for Drupal core (11.3.10)! drupal 10.6.9 Update released for Drupal core (10.6.9)! drupal 10.6.8 Update released for Drupal core (10.6.8)! drupal 11.3.9 Update released for Drupal core (11.3.9)! drupal 11.3.8 Update released for Drupal core (11.3.8)! drupal 11.3.7 Update released for Drupal core (11.3.7)! drupal 11.2.11 Update released for Drupal core (11.2.11)! drupal 10.6.7 Update released for Drupal core (10.6.7)! drupal 10.5.9 Update released for Drupal core (10.5.9)! cms 2.1.1 Update released for Drupal core (2.1.1)! drupal 11.3.6 Update released for Drupal core (11.3.6)! drupal 10.6.6 Update released for Drupal core (10.6.6)! cms 2.1.0 Update released for Drupal core (2.1.0)! linkit 7.0.15 Minor update available for module linkit (7.0.15). views_data_export 8.x-1.10 Minor update available for module views_data_export (8.x-1.10).

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
1 month 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