You are here

function views_handler_field_accesslog_path::options_form in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 modules/statistics/views_handler_field_accesslog_path.inc \views_handler_field_accesslog_path::options_form()
  2. 7.3 modules/statistics/views_handler_field_accesslog_path.inc \views_handler_field_accesslog_path::options_form()

Provide link to the page being visited.

Overrides views_handler_field::options_form

File

modules/statistics/views_handler_field_accesslog_path.inc, line 29

Class

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

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['display_as_link'] = array(
    '#title' => t('Display as link'),
    '#type' => 'checkbox',
    '#default_value' => !empty($this->options['display_as_link']),
  );
}