public function PARSECREATORS::parseArray in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
- 6 bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
- 7.3 plugins/biblio_style/bibtex/PARSECREATORS.php \PARSECREATORS::parseArray()
- 7.2 modules/bibtexParse/PARSECREATORS.php \PARSECREATORS::parseArray()
1 call to PARSECREATORS::parseArray()
- PARSECREATORS::parse in modules/
bibtexParse/ PARSECREATORS.php
File
- modules/
bibtexParse/ PARSECREATORS.php, line 212 - Classes Creators and PARSECREATORS.
Class
- PARSECREATORS
- Released through http://bibliophile.sourceforge.net under the GPL licence. Do whatever you like with this -- some credit to the author(s) would be appreciated.
Code
public function parseArray($authorArray, $type = 'author') {
foreach ($authorArray as $author) {
$this->authors[] = $this
->parseAuthor($author, $type);
}
}