You are here

public function WebformHandlerBase::getNotes in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::getNotes()

Returns notes of the webform variant.

Return value

string Notes for the webform variant, or an empty string.

Overrides WebformHandlerInterface::getNotes

1 call to WebformHandlerBase::getNotes()
WebformHandlerBase::getConfiguration in src/Plugin/WebformHandlerBase.php
Gets this plugin's configuration.

File

src/Plugin/WebformHandlerBase.php, line 243

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

public function getNotes() {
  return $this->notes;
}