You are here

public function YamlFormUiElementFormBase::isNew in YAML Form 8

Is new element.

Return value

bool TRUE if this form generating a new element.

Overrides YamlFormUiElementFormInterface::isNew

File

modules/yamlform_ui/src/Form/YamlFormUiElementFormBase.php, line 338

Class

YamlFormUiElementFormBase
Provides a base class for form element forms.

Namespace

Drupal\yamlform_ui\Form

Code

public function isNew() {
  return $this instanceof YamlFormUiElementAddForm ? TRUE : FALSE;
}