You are here

public function Serialized::validateOptionsForm in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::validateOptionsForm()

Validate the options form.

Overrides PluginBase::validateOptionsForm

File

core/modules/views/src/Plugin/views/field/Serialized.php, line 64
Contains \Drupal\views\Plugin\views\field\Serialized.

Class

Serialized
Field handler to show data of serialized fields.

Namespace

Drupal\views\Plugin\views\field

Code

public function validateOptionsForm(&$form, FormStateInterface $form_state) {

  // Require a key if the format is key.
  if ($form_state
    ->getValue(array(
    'options',
    'format',
  )) == 'key' && $form_state
    ->getValue(array(
    '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.'));
  }
}