function views_handler_field_accesslog_path::option_definition

Same name in other branches
  1. 7.x-3.x modules/statistics/views_handler_field_accesslog_path.inc \views_handler_field_accesslog_path::option_definition()

Overrides views_handler_field::option_definition

File

modules/statistics/views_handler_field_accesslog_path.inc, line 18

Class

views_handler_field_accesslog_path
Field handler to provide simple renderer that turns a URL into a clickable link.

Code

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