You are here

public function YamlFormHandlerBase::getHandlerId in YAML Form 8

Returns the unique ID representing the form handler.

Return value

string The form handler ID.

Overrides YamlFormHandlerInterface::getHandlerId

3 calls to YamlFormHandlerBase::getHandlerId()
EmailYamlFormHandler::sendMessage in src/Plugin/YamlFormHandler/EmailYamlFormHandler.php
Sends and logs a form submission message.
YamlFormHandlerBase::getConfiguration in src/YamlFormHandlerBase.php
Gets this plugin's configuration.
YamlFormHandlerBase::getSummary in src/YamlFormHandlerBase.php
Returns a render array summarizing the configuration of the form handler.

File

src/YamlFormHandlerBase.php, line 148

Class

YamlFormHandlerBase
Provides a base class for a form handler.

Namespace

Drupal\yamlform

Code

public function getHandlerId() {
  return $this->handler_id;
}