You are here

function PARSECREATORS::parseArray in Bibliography Module 7.2

Same name and namespace in other branches
  1. 6.2 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
  2. 6 bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
  3. 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \PARSECREATORS::parseArray()
  4. 7 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
1 call to PARSECREATORS::parseArray()
PARSECREATORS::parse in modules/bibtexParse/PARSECREATORS.php

File

modules/bibtexParse/PARSECREATORS.php, line 192

Class

PARSECREATORS

Code

function parseArray($authorArray, $type = 'author') {
  foreach ($authorArray as $author) {
    $this->authors[] = $this
      ->parseAuthor($author, $type);
  }
}