public function YamlFormHandlerBase::label in YAML Form 8
Returns the form handler label.
Return value
string The form handler label.
Overrides YamlFormHandlerInterface::label
2 calls to YamlFormHandlerBase::label()
- EmailYamlFormHandler::sendMessage in src/
Plugin/ YamlFormHandler/ EmailYamlFormHandler.php - Sends and logs a form submission message.
- YamlFormHandlerBase::getSummary in src/
YamlFormHandlerBase.php - Returns a render array summarizing the configuration of the form handler.
File
- src/
YamlFormHandlerBase.php, line 127
Class
- YamlFormHandlerBase
- Provides a base class for a form handler.
Namespace
Drupal\yamlformCode
public function label() {
return $this
->getLabel();
}