function PARSECREATORS::parseArray in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
- 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \PARSECREATORS::parseArray()
- 7 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
- 7.2 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
1 call to PARSECREATORS::parseArray()
- PARSECREATORS::parse in bibtexParse/
PARSECREATORS.php
File
- bibtexParse/
PARSECREATORS.php, line 192
Class
Code
function parseArray($authorArray, $type = 'author') {
foreach ($authorArray as $author) {
$this->authors[] = $this
->parseAuthor($author, $type);
}
}