function Serialized::validateOptionsForm
Same name in other branches
- 9 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::validateOptionsForm()
- 8.9.x core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::validateOptionsForm()
- 10 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::validateOptionsForm()
Overrides PluginBase::validateOptionsForm
File
-
core/
modules/ views/ src/ Plugin/ views/ field/ Serialized.php, line 59
Class
- Serialized
- Field handler to show data of serialized fields.
Namespace
Drupal\views\Plugin\views\fieldCode
public function validateOptionsForm(&$form, FormStateInterface $form_state) {
// Require a key if the format is key.
if ($form_state->getValue([
'options',
'format',
]) == 'key' && $form_state->getValue([
'options',
'key',
]) == '') {
$form_state->setError($form['key'], $this->t('You have to enter a key if you want to display a key of the data.'));
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.