protected function Message::defineOptions

File

src/Plugin/views/field/Message.php, line 35

Class

Message
Provides a field handler that renders a log message with replaced variables.

Namespace

Drupal\tmgmt\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['replace_variables'] = array(
    'default' => TRUE,
    'bool' => TRUE,
  );
  return $options;
}