function PARSEENTRIES::getEntries in Bibliography Module 7.3
Same name and namespace in other branches
- 6.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::getEntries()
- 7 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::getEntries()
- 7.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::getEntries()
File
- plugins/
biblio_style/ bibtex/ PARSEENTRIES.php, line 541
Class
Code
function &getEntries() {
if ($this->removeDelimit || $this->expandMacro && $this->fieldExtract) {
for ($i = 0; $i < count($this->entries); $i++) {
foreach ($this->entries[$i] as $key => $value) {
// 02/05/2005 G. Gardey don't expand macro for bibtexCitation
// and bibtexEntryType
if ($key != 'bibtexCitation' && $key != 'bibtexEntryType') {
$this->entries[$i][$key] = trim($this
->removeDelimitersAndExpand($this->entries[$i][$key]));
}
}
}
}
return $this->entries;
}