You are here

function views_handler_field_url::options_form in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_field_url.inc \views_handler_field_url::options_form()
  2. 7.3 handlers/views_handler_field_url.inc \views_handler_field_url::options_form()

Provide link to the page being visited.

Overrides views_handler_field::options_form

File

handlers/views_handler_field_url.inc, line 20

Class

views_handler_field_url
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']),
  );
}