You are here

function Creators::Creators in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/PARSECREATORS.php \Creators::Creators()
  2. 6 bibtexParse/PARSECREATORS.php \Creators::Creators()
  3. 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \Creators::Creators()

File

modules/bibtexParse/PARSECREATORS.php, line 9

Class

Creators

Code

function Creators($init = NULL) {
  $this
    ->buildTypeMap();
  if (is_array($init)) {
    $this
      ->setCreators($init);
  }
  elseif (is_numeric($init)) {
    $this
      ->loadCreators($init);
  }
}