You are here

function biblio_handler_field_export_link::options_form in Bibliography Module 6.2

Same name and namespace in other branches
  1. 7 views/biblio_handler_field_export_link.inc \biblio_handler_field_export_link::options_form()
  2. 7.2 views/biblio_handler_field_export_link.inc \biblio_handler_field_export_link::options_form()

File

views/biblio_handler_field_export_link.inc, line 24
Views biblio export link handler for Drupal biblio module.

Class

biblio_handler_field_export_link
@file Views biblio export link handler for Drupal biblio module.

Code

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