Provides a field handler that renders a log message with replaced variables.
@ViewsField("tmgmt_message");
Expanded class hierarchy of Message
class Message extends FieldPluginBase {
/**
* {@inheritdoc}
*/
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';
}
}
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['replace_variables'] = array(
'default' => TRUE,
'bool' => TRUE,
);
return $options;
}
/**
* {@inheritdoc}
*/
public function buildOptionsForm(&$form, FormStateInterface $form_state) {
parent::buildOptionsForm($form, $form_state);
$form['replace_variables'] = array(
'#title' => t('Replace variables'),
'#type' => 'checkbox',
'#default_value' => $this->options['replace_variables'],
);
}
/**
* {@inheritdoc}
*/
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);
}
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Message:: |
public | function | ||
Message:: |
protected | function | ||
Message:: |
public | function | ||
Message:: |
public | function |