DblogMessage.php in Drupal 9
File
core/modules/dblog/src/Plugin/views/field/DblogMessage.php
View source
<?php
namespace Drupal\dblog\Plugin\views\field;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\Core\Form\FormStateInterface;
use Drupal\views\Plugin\views\field\FieldPluginBase;
use Drupal\views\ResultRow;
use Drupal\views\ViewExecutable;
use Drupal\views\Plugin\views\display\DisplayPluginBase;
class DblogMessage extends FieldPluginBase {
public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
parent::init($view, $display, $options);
if ($this->options['replace_variables']) {
$this->additional_fields['variables'] = 'variables';
}
}
protected function defineOptions() {
$options = parent::defineOptions();
$options['replace_variables'] = [
'default' => TRUE,
];
return $options;
}
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['replace_variables'] = [
'#title' => $this
->t('Replace variables'),
'#type' => 'checkbox',
'#default_value' => $this->options['replace_variables'],
];
}
public function render(ResultRow $values) {
$value = $this
->getValue($values);
if ($this->options['replace_variables']) {
$variables = unserialize($this
->getvalue($values, 'variables'));
return new FormattableMarkup($value, (array) $variables);
}
else {
return $this
->sanitizeValue($value);
}
}
}
Classes
Name |
Description |
DblogMessage |
Provides a field handler that renders a log event with replaced variables. |