You are here

protected function Serialized::defineOptions in Drupal 10

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

File

core/modules/views/src/Plugin/views/field/Serialized.php, line 20

Class

Serialized
Field handler to show data of serialized fields.

Namespace

Drupal\views\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['format'] = [
    'default' => 'unserialized',
  ];
  $options['key'] = [
    'default' => '',
  ];
  return $options;
}