function DblogMessage::buildOptionsForm
Default option form that provides label widget that all fields should have.
Overrides FieldPluginBase::buildOptionsForm
File
-
core/
modules/ dblog/ src/ Plugin/ views/ field/ DblogMessage.php, line 45
Class
- DblogMessage
- Provides a field handler that renders a log event with replaced variables.
Namespace
Drupal\dblog\Plugin\views\fieldCode
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'],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.