Skip to content
Snippets Groups Projects
Commit 30841bce authored by Demian Katz's avatar Demian Katz
Browse files

Added more RIS fields.

- Thanks to Johannes Ruscheinski for the code.
parent 955be57e
Branches
Tags
No related merge requests found
......@@ -108,6 +108,25 @@ if (is_array($languages)) {
}
}
$genres = $this->driver->tryMethod('getGenres');
if (is_array($genres)) {
foreach ($genres as $genre) {
echo 'M3 - ' . "$genre\r\n";
}
}
$topics = $this->driver->tryMethod('getTopics');
if (is_array($topics)) {
foreach ($topics as $topic) {
echo 'KW - ' . "$topic\r\n";
}
}
$start_page = $this->driver->tryMethod('getContainerStartPage');
if (!empty($start_page)) {
echo 'SP - ' . "$start_page\r\n";
}
$isbns = $this->driver->tryMethod('getISBNs');
if (is_array($isbns)) {
foreach ($isbns as $isbn) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment