You are here

public function biblio_handler_field_keyword::options_form in Bibliography Module 7

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

Overrides biblio_handler_field::options_form

File

views/biblio_handler_field_keyword.inc, line 31

Class

biblio_handler_field_keyword

Code

public function options_form(&$form, &$form_state) {
  $form['separator'] = array(
    '#type' => 'textfield',
    '#size' => 5,
    '#title' => t('Keyword separator'),
    '#default_value' => $this->options['separator'],
    '#required' => TRUE,
    '#description' => t('Enter the character which will be used to separate the keywords.'),
    '#fieldset' => 'separators',
  );
  parent::options_form($form, $form_state);
}