public function WebformHandlerBase::isDisabled in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::isDisabled()
Returns the webform handler disabled indicator.
Return value
bool TRUE if the webform handler is disabled.
Overrides WebformHandlerInterface::isDisabled
File
- src/
Plugin/ WebformHandlerBase.php, line 386
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function isDisabled() {
return !$this
->isEnabled();
}