function PARSEENTRIES::openBib in Bibliography Module 6
Same name and namespace in other branches
- 5 bibtexParse/PARSEENTRIES.php \PARSEENTRIES::openBib()
- 6.2 modules/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()
Parameters
$file:
Return value
none
File
- bibtexParse/
PARSEENTRIES.php, line 156
Class
Code
function openBib($file) {
if (!is_file($file)) {
die;
}
$this->fid = fopen($file, 'r');
$this->parseFile = TRUE;
}