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