public function WebformHandlerBase::setHandlerId in Webform 8.5
Same name and namespace in other branches
- 6.x src/Plugin/WebformHandlerBase.php \Drupal\webform\Plugin\WebformHandlerBase::setHandlerId()
Sets the id for this webform handler.
Parameters
int $handler_id: The handler_id for this webform handler.
Return value
$this
Overrides WebformHandlerInterface::setHandlerId
File
- src/
Plugin/ WebformHandlerBase.php, line 273
Class
- WebformHandlerBase
- Provides a base class for a webform handler.
Namespace
Drupal\webform\PluginCode
public function setHandlerId($handler_id) {
$this->handler_id = $handler_id;
return $this;
}