You are here

function biblio_contributor_org_words in Bibliography Module 7.2

1 call to biblio_contributor_org_words()
biblio_contributor_initial_parse in includes/biblio.contributors.inc

File

includes/biblio.contributors.inc, line 556

Code

function biblio_contributor_org_words() {
  if ($set_words = variable_get('biblio_organization_words')) {
    $org_words = explode('|', $set_words);

    // Remove whitespace from all the words
    foreach ($org_words as $k => $word) {
      $org_words[$k] = trim($word);
    }
  }
  else {
    $org_words = array(
      'Midatlantic',
      'of',
      'VA',
      'study',
      'trial',
      'the',
      'for',
      'Disorder',
      'Millennium',
      'Millenium',
      'Cohort',
      'Organization',
      'Org',
      'Division',
      'Center',
      'Centers',
      'Health',
      'Group',
      'Team',
      'Agency',
      'Trust',
      'Prevention',
      'Survey',
      'Grp',
      'Force',
      'Inst',
      'Institute',
      'Office',
      'Consortium',
      'STATA',
    );
  }
  return $org_words;
}