ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
class.ilRisWrapper.php
Go to the documentation of this file.
1
<?php
2
use
LibRIS\RISReader
;
3
9
class
ilRisWrapper
10
{
11
17
public
function
parseContent
($content)
18
{
19
$RISReader =
new
RISReader
();
20
21
$RISReader->parseString($content);
22
23
return
$RISReader->getRecords();
24
}
25
26
33
public
function
parseFile
($path_to_file)
34
{
35
$RISReader =
new
RISReader
();
36
37
$RISReader->parseFile($path_to_file);
38
39
return
$RISReader->getRecords();
40
}
41
}
ilRisWrapper\parseFile
parseFile($path_to_file)
Definition:
class.ilRisWrapper.php:33
ilRisWrapper
Class ilRisWrapper.
Definition:
class.ilRisWrapper.php:9
RISReader
LibRIS\RISReader
The main class for parsing RIS files.
Definition:
RISReader.php:60
ilRisWrapper\parseContent
parseContent($content)
Definition:
class.ilRisWrapper.php:17
Modules
Bibliographic
classes
Types
Ris
class.ilRisWrapper.php
Generated on Tue Feb 25 2025 19:01:21 for ILIAS by
1.8.13 (using
Doxyfile
)