public function YamlForm::isOpen in YAML Form 8
Returns the form opened status indicator.
Return value
bool TRUE if the form is open to new submissions.
Overrides YamlFormInterface::isOpen
1 call to YamlForm::isOpen()
- YamlForm::isClosed in src/
Entity/ YamlForm.php - Returns the form closed status indicator.
File
- src/
Entity/ YamlForm.php, line 303
Class
- YamlForm
- Defines the form entity.
Namespace
Drupal\yamlform\EntityCode
public function isOpen() {
return $this->status ? TRUE : FALSE;
}