You are here

function views_handler_field_taxonomy_term_revision::options_form in Taxonomy revision 7

(non-PHPdoc)

Overrides views_handler_field_taxonomy::options_form

See also

views_handler_field_taxonomy::options_form()

File

views/views_handler_field_taxonomy_term_revision.inc, line 38
Contains the basic 'taxonomy_revision' field handler.

Class

views_handler_field_taxonomy_term_revision
Field handler for the revision_id column.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['link_to_taxonomy_revision'] = array(
    '#title' => t('Link this field to its taxonomy term revision'),
    '#description' => t('This will override any other link you have set.'),
    '#type' => 'checkbox',
    '#default_value' => !empty($this->options['link_to_taxonomy_revision']),
  );
}