- add TiteAdditional and TitleAbstractAdditional
- addapt datasetxml2oai-pmh.xslt - neww title name
This commit is contained in:
parent
7b34e57aee
commit
15c7df78c7
4 changed files with 77 additions and 6 deletions
|
@ -23,12 +23,22 @@ trait DatasetExtension
|
|||
protected $externalFields = array(
|
||||
'TitleMain' => array(
|
||||
'model' => Title::class,
|
||||
'options' => array('type' => ['Main', 'Alternative', 'Sub', 'Translated', 'Other']),
|
||||
'options' => array('type' => ['Main']),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
'TitleAdditional' => array(
|
||||
'model' => Title::class,
|
||||
'options' => array('type' => ['Alternative', 'Sub', 'Translated', 'Other']),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
'TitleAbstract' => array(
|
||||
'model' => Description::class,
|
||||
'options' => array('type' => ['Abstract', 'Methods', 'Technical_info', 'Series_information', 'Other']),
|
||||
'options' => array('type' => ['Abstract']),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
'TitleAbstractAdditional' => array(
|
||||
'model' => Description::class,
|
||||
'options' => array('type' => ['Methods', 'Technical_info', 'Series_information', 'Other']),
|
||||
'fetch' => 'eager'
|
||||
),
|
||||
'Licence' => array(
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue