You are here

public function better_watchdog_ui_handler_field_watchdog_message::option_definition in Better Watchdog UI 7.3

Same name and namespace in other branches
  1. 8 views/handlers/better_watchdog_ui_handler_field_watchdog_message.inc \better_watchdog_ui_handler_field_watchdog_message::option_definition()
  2. 7 views/handlers/better_watchdog_ui_handler_field_watchdog_message.inc \better_watchdog_ui_handler_field_watchdog_message::option_definition()
  3. 7.2 views/handlers/better_watchdog_ui_handler_field_watchdog_message.inc \better_watchdog_ui_handler_field_watchdog_message::option_definition()

Option to link message to entry.

Overrides views_handler_field::option_definition

File

views/handlers/better_watchdog_ui_handler_field_watchdog_message.inc, line 18
Definition of better_watchdog_ui_handler_field_watchdog_message.

Class

better_watchdog_ui_handler_field_watchdog_message
Provides message display options for the watchdog entry.

Code

public function option_definition() {
  $options = parent::option_definition();
  $options['link_to_watchdog'] = array(
    'default' => TRUE,
    'bool' => TRUE,
  );
  return $options;
}