public function WebformHandlerBase::supportsConditions in Webform 8.5
Same name and namespace in other branches
- 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\PluginCode
public function supportsConditions() {
return $this->pluginDefinition['conditions'];
}