function views_handler_field_term_link_edit::options_form

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

Overrides views_handler_field::options_form

File

modules/taxonomy/views_handler_field_term_link_edit.inc, line 42

Class

views_handler_field_term_link_edit
Field handler to present a term edit link.

Code

public function options_form(&$form, &$form_state) {
  $form['text'] = array(
    '#type' => 'textfield',
    '#title' => t('Text to display'),
    '#default_value' => $this->options['text'],
  );
  parent::options_form($form, $form_state);
}