Fichier
-
src/
FieldStateBase.php, line 143
Classe
- FieldStateBase
- Provides a base class for field staes.
Namespace
Drupal\field_states_uiCode
public function getConfigurationForForm() {
$form = [];
foreach ($this->configuration as $key => $value) {
$form[$key] = [
'#type' => 'hidden',
'#value' => $value,
];
}
return $form;
}