public function YamlForm::getSettings in YAML Form 8
Returns the form settings.
Return value
array A structured array containing all the form settings.
Overrides YamlFormInterface::getSettings
4 calls to YamlForm::getSettings()
- YamlForm::getPages in src/
Entity/ YamlForm.php - Get form wizard pages.
- YamlForm::getSetting in src/
Entity/ YamlForm.php - Returns the form settings for a given key.
- YamlForm::hasPage in src/
Entity/ YamlForm.php - Determine if the form has page or is attached to other entities.
- YamlForm::setSetting in src/
Entity/ YamlForm.php - Saves a form setting for a given key.
File
- src/
Entity/ YamlForm.php, line 437
Class
- YamlForm
- Defines the form entity.
Namespace
Drupal\yamlform\EntityCode
public function getSettings() {
return $this->settings + self::getDefaultSettings();
}