You are here

public function WebformVariantBase::getNotes in Webform 8.5

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

Returns notes of the webform variant.

Return value

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

Overrides WebformVariantInterface::getNotes

2 calls to WebformVariantBase::getNotes()
OverrideWebformVariant::debug in src/Plugin/WebformVariant/OverrideWebformVariant.php
Display debugging information.
WebformVariantBase::getConfiguration in src/Plugin/WebformVariantBase.php
Gets this plugin's configuration.

File

src/Plugin/WebformVariantBase.php, line 209

Class

WebformVariantBase
Provides a base class for a webform variant.

Namespace

Drupal\webform\Plugin

Code

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