function PARSEENTRIES::openBib in Bibliography Module 5
Same name and namespace in other branches
- 6.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::openBib()
- 6 bibtexParse/PARSEENTRIES.php \PARSEENTRIES::openBib()
- 7.3 plugins/biblio_style/bibtex/PARSEENTRIES.php \PARSEENTRIES::openBib()
- 7 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::openBib()
- 7.2 modules/bibtexParse/PARSEENTRIES.php \PARSEENTRIES::openBib()
File
- bibtexParse/
PARSEENTRIES.php, line 150
Class
Code
function openBib($file) {
if (!is_file($file)) {
die;
}
$this->fid = fopen($file, 'r');
$this->parseFile = TRUE;
}