You are here

function views_handler_field_node_registration_path::options_form in Node registration 7

Default options form provides the label widget that all fields should have.

Overrides views_handler_field::options_form

File

includes/views/views_handler_field_node_registration_path.inc, line 22
Handler for Node registration path field.

Class

views_handler_field_node_registration_path
@file Handler for Node registration path field.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['absolute'] = array(
    '#type' => 'checkbox',
    '#title' => t('Use absolute link ("http://...")'),
    '#default_value' => $this->options['absolute'],
    '#description' => t('Enable this option to output an absolute link. Required if you want to use the path as a link destination (as in "output this field as a link" above).'),
    '#fieldset' => 'alter',
  );
}