You are here

public function WebformHandlerBase::supportsConditions in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::supportsConditions()

Determine if webform handler supports conditions.

Return value

bool TRUE if the webform handler supports conditions.

Overrides WebformHandlerInterface::supportsConditions

1 call to WebformHandlerBase::supportsConditions()
WebformHandlerBase::checkConditions in src/Plugin/WebformHandlerBase.php
Check handler conditions against a webform submission.

File

src/Plugin/WebformHandlerBase.php, line 252

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function supportsConditions() {
  return $this->pluginDefinition['conditions'];
}