You are here

function biblio_handler_field_contributor::options_form in Bibliography Module 6.2

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

Overrides biblio_handler_field::options_form

File

views/biblio_handler_field_contributor.inc, line 22
Views biblio contributor handler for Drupal biblio module.

Class

biblio_handler_field_contributor
@file Views biblio contributor handler for Drupal biblio module.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  module_load_include('inc', 'biblio', 'includes/biblio.admin');
  $form['style_name'] = array(
    '#type' => 'radios',
    '#title' => t('Style'),
    '#default_value' => $this->options['style_name'],
    '#options' => biblio_get_styles(),
    '#description' => t('Define the layout of author lists.'),
  );
}