You are here

public function YamlFormHandlerBase::isEnabled in YAML Form 8

Returns the form handler enabled indicator.

Return value

bool TRUE if the form handler is enabled.

Overrides YamlFormHandlerInterface::isEnabled

1 call to YamlFormHandlerBase::isEnabled()
YamlFormHandlerBase::isDisabled in src/YamlFormHandlerBase.php
Returns the form handler disabled indicator.
1 method overrides YamlFormHandlerBase::isEnabled()
BrokenYamlFormHandler::isEnabled in src/Plugin/YamlFormHandler/BrokenYamlFormHandler.php
Returns the form handler enabled indicator.

File

src/YamlFormHandlerBase.php, line 208

Class

YamlFormHandlerBase
Provides a base class for a form handler.

Namespace

Drupal\yamlform

Code

public function isEnabled() {
  return $this->status ? TRUE : FALSE;
}