You are here

public function WebformHandlerBase::setNotes in Webform 8.5

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

Set notes for this webform variant.

Parameters

string $notes: Notes for this webform variant.

Return value

$this

Overrides WebformHandlerInterface::setNotes

File

src/Plugin/WebformHandlerBase.php, line 296

Class

WebformHandlerBase
Provides a base class for a webform handler.

Namespace

Drupal\webform\Plugin

Code

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