Serialized.php in Views (for Drupal 7) 8.3
Definition of Drupal\views\Plugin\views\field\Serialized.
Namespace
Drupal\views\Plugin\views\fieldFile
lib/Drupal/views/Plugin/views/field/Serialized.phpView source
<?php
/**
* @file
* Definition of Drupal\views\Plugin\views\field\Serialized.
*/
namespace Drupal\views\Plugin\views\field;
use Drupal\Core\Annotation\Plugin;
/**
* Field handler to show data of serialized fields.
*
* @ingroup views_field_handlers
*
* @Plugin(
* id = "serialized"
* )
*/
class Serialized extends FieldPluginBase {
protected function defineOptions() {
$options = parent::defineOptions();
$options['format'] = array(
'default' => 'unserialized',
);
$options['key'] = array(
'default' => '',
);
return $options;
}
public function buildOptionsForm(&$form, &$form_state) {
parent::buildOptionsForm($form, $form_state);
$form['format'] = array(
'#type' => 'select',
'#title' => t('Display format'),
'#description' => t('How should the serialized data be displayed. You can choose a custom array/object key or a print_r on the full output.'),
'#options' => array(
'unserialized' => t('Full data (unserialized)'),
'serialized' => t('Full data (serialized)'),
'key' => t('A certain key'),
),
'#default_value' => $this->options['format'],
);
$form['key'] = array(
'#type' => 'textfield',
'#title' => t('Which key should be displayed'),
'#default_value' => $this->options['key'],
'#states' => array(
'visible' => array(
':input[name="options[format]"]' => array(
'value' => 'key',
),
),
),
);
}
public function validateOptionsForm(&$form, &$form_state) {
// Require a key if the format is key.
if ($form_state['values']['options']['format'] == 'key' && $form_state['values']['options']['key'] == '') {
form_error($form['key'], t('You have to enter a key if you want to display a key of the data.'));
}
}
function render($values) {
$value = $values->{$this->field_alias};
if ($this->options['format'] == 'unserialized') {
return check_plain(print_r(unserialize($value), TRUE));
}
elseif ($this->options['format'] == 'key' && !empty($this->options['key'])) {
$value = (array) unserialize($value);
return check_plain($value[$this->options['key']]);
}
return $value;
}
}
Classes
Name | Description |
---|---|
Serialized | Field handler to show data of serialized fields. |