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