You are here

function biblio_node_form_vtab_info in Bibliography Module 7

2 calls to biblio_node_form_vtab_info()
biblio_node_form_validate in ./biblio.module
Implements hook_validate().
biblio_node_form_vtabs in ./biblio.module

File

./biblio.module, line 1442
Bibliography Module for Drupal.

Code

function biblio_node_form_vtab_info() {
  return array(
    array(
      'tab_id' => 1,
      'weight' => 10,
      'title' => 'Abstract',
      'description' => '',
    ),
    array(
      'tab_id' => 'biblio_full_text',
      'weight' => 11,
      'title' => 'Full text',
      'description' => '',
    ),
    array(
      'tab_id' => 2,
      'weight' => 12,
      'title' => 'Publication',
      'description' => '',
    ),
    array(
      'tab_id' => 3,
      'weight' => 13,
      'title' => 'Publisher',
      'description' => '',
    ),
    array(
      'tab_id' => 4,
      'weight' => 14,
      'title' => 'Identifiers',
      'description' => '',
    ),
    array(
      'tab_id' => 5,
      'weight' => 15,
      'title' => 'Locators',
      'description' => 'URL\'s etc',
    ),
    array(
      'tab_id' => 6,
      'weight' => 16,
      'title' => 'Keywords',
      'description' => '',
    ),
    array(
      'tab_id' => 7,
      'weight' => 17,
      'title' => 'Notes',
      'description' => '',
    ),
    array(
      'tab_id' => 8,
      'weight' => 18,
      'title' => 'Alternate Titles',
      'description' => '',
    ),
    array(
      'tab_id' => 9,
      'weight' => 19,
      'title' => 'Other',
      'description' => '',
    ),
  );
}