Configuration

Target group: Developers, Integrators

Set zdb configuration

You see the default values.

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

Set paths to your own templates, partials and layouts

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

        layoutRootPaths {
            0 = EXT:libconnect/Resources/Private/Layouts/
            1 = <yourPath>
        }
    }
}

Deactivate standard CSS

If you don´t want to use the original css, deactivate it.

1
2
page.includeCSS.dbis >
page.includeCSS.ezb >

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.

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

        ezbshortaccessinfos{
            de{
                1 = frei zugänglich
                2 = im Campus-Netz zugänglich
                4 = nicht frei zugänglich
                6 = nur ein Teil zugänglich
            }
            en{
                1 = free available
                2 = only on the Campus-Netz accessible
                4 = not free accessible
                6 = only a part is accessible
            }
        }
    }
}

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

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