Configuration

Target group: Developers, Integrators

Set zdb configuration

You see the default values.

1plugin.tx_libconnect {
2    zdbsid = vid:dbid
3    zdbbibid =
4    zdbsigel =
5    zdbisil =
6    zdbbik =
7}

Set paths to your own templates, partials and layouts

 1plugin.tx_libconnect {
 2    view {
 3        templateRootPaths {
 4            0 = EXT:libconnect/Resources/Private/Templates/
 5            1 = <yourPath>
 6        }
 7        partialRootPaths {
 8            0 = EXT:libconnect/Resources/Private/Partials/
 9            1 = <yourPath>
10        }
11
12        layoutRootPaths {
13            0 = EXT:libconnect/Resources/Private/Layouts/
14            1 = <yourPath>
15        }
16    }
17}

EZB: Overwrite access information texts

If the text of ezb is empty, it will be overwritten by configuration. If force = yes, all texts are overwritten.

 1plugin.tx_libconnect {
 2    settings {
 3        ezblongaccessinfos{
 4            force = yes
 5            de{
 6                1 = frei zugänglich
 7                2 = Im Campus-Netz sowie für Angehörige der Universität auch extern zugänglich.
 8                4 = Für Ihren Standort nicht freigeschaltet. Zum Teil bekommen Sie Zugriff auf Abstracts.
 9                6 = Nur für einen Teil der erschienenen Jahrgänge zugänglich.
10            }
11            en{
12                1 = free available
13                2 = On campus network and member of the university external accessible
14                4 = Free for your location. Partial only access to abstracts.
15                6 = Only a part of the volumes is accessible.
16            }
17        }
18
19        ezbshortaccessinfos{
20            de{
21                1 = frei zugänglich
22                2 = im Campus-Netz zugänglich
23                4 = nicht frei zugänglich
24                6 = nur ein Teil zugänglich
25            }
26            en{
27                1 = free available
28                2 = only on the Campus-Netz accessible
29                4 = not free accessible
30                6 = only a part is accessible
31            }
32        }
33    }
34}

ZDB: filter location information

Comma seperated list of integer. The values are location states which are dispayed.

2 = available, 3 = limited availability (moving wall, etc.), 4 = journal not available

1plugin.tx_libconnect {
2    settings.validStatesList = 1,2
3}