function Serialized::defineOptions
Overrides FieldPluginBase::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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
