You are here

public function BiblioStyleEndNote::settingsForm in Bibliography Module 7.3

Overrides BiblioStyleBase::settingsForm

File

plugins/biblio_style/endnote/BiblioStyleEndNote.class.php, line 10
EndNote tagged biblio style.

Class

BiblioStyleEndNote
@file EndNote tagged biblio style.

Code

public function settingsForm() {
  $form['type'] = array(
    '#type' => 'select',
    '#title' => t('Type'),
    '#required' => TRUE,
    '#options' => array(
      'tagged' => t('Tagged'),
      'xml' => t('XML'),
    ),
    '#default_value' => 'tagged',
  );
  return $form;
}