function Serialized::defineOptions

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::defineOptions()
  2. 10 core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\Serialized::defineOptions()
  3. 11.x core/modules/views/src/Plugin/views/field/Serialized.php \Drupal\views\Plugin\views\field\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\field

Code

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.