You are here

public function WebformHandlerBase::isDisabled in Webform 6.x

Same name and namespace in other branches
  1. 8.5 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 325

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function isDisabled() {
  return !$this
    ->isEnabled();
}