You are here

public function YamlFormHandlerBase::isDisabled in YAML Form 8

Returns the form handler disabled indicator.

Return value

bool TRUE if the form handler is disabled.

Overrides YamlFormHandlerInterface::isDisabled

File

src/YamlFormHandlerBase.php, line 215

Class

YamlFormHandlerBase
Provides a base class for a form handler.

Namespace

Drupal\yamlform

Code

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