wizard for publishing: step 0

This commit is contained in:
Arno Kaimbacher 2019-03-19 18:04:41 +01:00
parent d9b26afb3f
commit 9d195c450e
10 changed files with 102 additions and 55 deletions

View file

@ -206,7 +206,7 @@ class QueryBuilder
$query = new SolrSearchQuery(SolrSearchQuery::ALL_DOCS);
$query->setStart("0");//$input['start']);
//$query->setRows($input['rows']);
$query->setRows("10");
$query->setRows("100");
$query->setSortField($input['sortField']);
$query->setSortOrder($input['sortOrder']);

View file

@ -22,12 +22,12 @@ trait DatasetExtension
protected $externalFields = array(
'TitleMain' => array(
'model' => Title::class,
'options' => array('type' => ['main', 'alternative', 'subtitle', 'other']),
'options' => array('type' => ['main', 'alternative', 'sub', 'translated', 'other']),
'fetch' => 'eager'
),
'TitleAbstract' => array(
'model' => Description::class,
'options' => array('type' => ['abstract', 'methods']),
'options' => array('type' => ['abstract', 'methods', 'technical_info', 'series_information', 'other']),
'fetch' => 'eager'
),
'Licence' => array(