You are here

public function WebformVariantBase::setNotes in Webform 8.5

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

Set notes for this webform variant.

Parameters

string $notes: Notes for this webform variant.

Return value

$this

Overrides WebformVariantInterface::setNotes

File

src/Plugin/WebformVariantBase.php, line 201

Class

WebformVariantBase
Provides a base class for a webform variant.

Namespace

Drupal\webform\Plugin

Code

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