public function WebformHandlerBase::getConditions in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::getConditions()
Returns the conditions the webform handler.
Return value
array The conditions of the webform handler.
Overrides WebformHandlerInterface::getConditions
2 calls to WebformHandlerBase::getConditions()
- WebformHandlerBase::checkConditions in src/
Plugin/ WebformHandlerBase.php - Check handler conditions against a webform submission.
- WebformHandlerBase::getConfiguration in src/
Plugin/ WebformHandlerBase.php - Gets this plugin's configuration.
File
- src/
Plugin/ WebformHandlerBase.php, line 335
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function getConditions() {
return $this->conditions;
}