You are here

public function ContributorObject::getSuffixMap in Bibliography Module 7.2

Get an array of common suffixes

Return value

array Keys are normalized suffixes, values are proper suffixes

1 call to ContributorObject::getSuffixMap()
ContributorObject::mapSuffix in lib/msrc-authortool/src/Analyzer/ContributorObject.php
Map a suffix

File

lib/msrc-authortool/src/Analyzer/ContributorObject.php, line 105

Class

ContributorObject
Contributor Match Object

Namespace

Analyzer

Code

public function getSuffixMap() {
  return array(
    '2nd' => '2nd',
    '3rd' => '3rd',
    'phd' => 'Ph.D.',
    'ms' => 'M.S.',
    'ma' => 'M.A.',
    'jr' => 'Jr.',
    'sr' => 'Sr.',
    'psyd' => 'Psy.D.',
    'frcpi' => 'F.R.C.P.I.',
    '2' => '2nd',
    'II' => '2nd',
    'III' => '3rd',
    'IV' => '4th',
  );
}