public function DblogMessage::buildOptionsForm in Drupal 8
Same name and namespace in other branches
- 9 core/modules/dblog/src/Plugin/views/field/DblogMessage.php \Drupal\dblog\Plugin\views\field\DblogMessage::buildOptionsForm()
Default options form that provides the 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'],
];
}