public function YamlFormHandlerBase::setHandlerId in YAML Form 8
Sets the id for this form handler.
Parameters
int $handler_id: The handler_id for this form handler.
Return value
$this
Overrides YamlFormHandlerInterface::setHandlerId
File
- src/
YamlFormHandlerBase.php, line 155
Class
- YamlFormHandlerBase
- Provides a base class for a form handler.
Namespace
Drupal\yamlformCode
public function setHandlerId($handler_id) {
$this->handler_id = $handler_id;
return $this;
}