protected function Serialized::defineOptions in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::defineOptions()
- 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\fieldCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['format'] = [
'default' => 'unserialized',
];
$options['key'] = [
'default' => '',
];
return $options;
}