public function FormStateValuesTrait::isValueEmpty in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::isValueEmpty()
- 9 core/lib/Drupal/Core/Form/FormStateValuesTrait.php \Drupal\Core\Form\FormStateValuesTrait::isValueEmpty()
Implements \Drupal\Core\Form\FormStateInterface::isValueEmpty()
File
- core/lib/ Drupal/ Core/ Form/ FormStateValuesTrait.php, line 70 
Class
- FormStateValuesTrait
- Provides methods to manage form state values.
Namespace
Drupal\Core\FormCode
public function isValueEmpty($key) {
  $exists = NULL;
  $value = NestedArray::getValue($this
    ->getValues(), (array) $key, $exists);
  return !$exists || empty($value);
}