Drupal is a registered trademark of Dries Buytaert
Release: Leaflet 10.4.11 Minor update available for module leaflet (10.4.11). Release: Session Inspector 1.0.8 Minor update available for module session_inspector (1.0.8). Release: Migrate QA 2.0.4 Minor update available for module migrate_qa (2.0.4). Release: CKEditor Description List 3.0.0 Major update available for module ckeditor_descriptionlist (3.0.0). Release: FlowDrop 2.4.0 Minor update available for module flowdrop (2.4.0). Release: JWT Token Refresh 1.0.4 Minor update available for module jwt_token_refresh (1.0.4). Release: ConReg 1.0.0-beta1 First beta version released for module conreg (1.0.0-beta1). Release: AI Image Studio 1.0.0-beta8 New beta version released for module ai_image_studio (1.0.0-beta8). Usage Milestone: Role Theme Switcher Module role_theme_switcher crossed 1,000 active installs. Module Revived: Decoupled Router 2.0.7 Module decoupled_router updated after 11 months of inactivity (2.0.7).

This module allows developers to apply Webform conditions and validation logic to other forms. It extracts and normalizes dependencies from form states, enabling conditional behavior and validation in custom applications.

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

Tracked releases
3
Tracked since
Apr 2026
Latest release
2 months ago
Releases (12 mo)
3 ▲ from 0
Maintenance
Active

Release Timeline

Releases

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