You are here

public function YamlForm::isClosed in YAML Form 8

Returns the form closed status indicator.

Return value

bool TRUE if the form is closed to new submissions.

Overrides YamlFormInterface::isClosed

File

src/Entity/YamlForm.php, line 310

Class

YamlForm
Defines the form entity.

Namespace

Drupal\yamlform\Entity

Code

public function isClosed() {
  return !$this
    ->isOpen();
}