You are here

function biblio_form_vtab_info in Bibliography Module 7.2

Get info specific to each vertical tab

Return value

array

2 calls to biblio_form_vtab_info()
biblio_form_alter in ./biblio.module
Implements hook_form_alter().
biblio_form_vtabs in ./biblio.module
Creates the vertical tab form structure as used in the add/edit form

File

./biblio.module, line 1330

Code

function biblio_form_vtab_info() {
  return array(
    array(
      'tab_id' => 'contributors',
      'weight' => 9,
      'title' => 'Contributors',
      'description' => 'Enter a single name per line using a format such as "Smith, John K" or "John K Smith" or "J.K. Smith"',
    ),
    array(
      'tab_id' => 'abstract',
      'weight' => 10,
      'title' => 'Abstract',
      'description' => '',
    ),
    array(
      'tab_id' => 'full_text',
      'weight' => 11,
      'title' => 'Full text',
      'description' => '',
    ),
    array(
      'tab_id' => 'publication',
      'weight' => 12,
      'title' => 'Publication',
      'description' => '',
    ),
    array(
      'tab_id' => 'publisher',
      'weight' => 13,
      'title' => 'Publisher',
      'description' => '',
    ),
    array(
      'tab_id' => 'identifiers',
      'weight' => 14,
      'title' => 'Identifiers',
      'description' => '',
    ),
    array(
      'tab_id' => 'locators',
      'weight' => 15,
      'title' => 'Locators',
      'description' => 'URL\'s etc',
    ),
    array(
      'tab_id' => 'keywords',
      'weight' => 16,
      'title' => 'Keywords',
      'description' => '',
    ),
    array(
      'tab_id' => 'notes',
      'weight' => 17,
      'title' => 'Notes',
      'description' => '',
    ),
    array(
      'tab_id' => 'alternate_titles',
      'weight' => 18,
      'title' => 'Alternate Titles',
      'description' => '',
    ),
    array(
      'tab_id' => 'other',
      'weight' => 19,
      'title' => 'Other',
      'description' => '',
    ),
  );
}