public function WebformHandlerBase::setNotes in Webform 8.5
Same name and namespace in other branches
- 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\PluginCode
public function setNotes($notes) {
$this->notes = $notes;
return $this;
}