Newer
Older
<?php
/**
* Copyright (C) 2019 Leipzig University Library
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* @author Gregor Gawol <gawol@ub.uni-leipzig.de>
* @license http://opensource.org/licenses/gpl-2.0.php GNU GPLv2
*/
namespace fid_adlr\Module\Configuration;
Robert Lange
committed
use fid_adlr\Controller\MyResearchController;
use fid_adlr\Controller\MyResearchControllerFactory;
use Zend\Router\Http\Regex;
Robert Lange
committed
'controllers' => [
'factories' => [
MyResearchController::class => MyResearchControllerFactory::class
],
'aliases' => [
'my-research' => MyResearchController::class,
],
],
'router' => [
'routes' => [
'myresearch' => [
'type' => Regex::class,
'options' => [
'regex' => '/(?i)myresearch',
'spec' =>'/myresearch'
],
'may_terminate' => true,
'child_routes' => [
'databases' => [
'type' => Regex::class,
'options' => [
'regex' => '/(?i)(databases|dbis|licenses)',
'defaults' => [
'controller' => MyResearchController::class,
'action' => 'databases',
],
'spec'=>'/databases'
],
],
],
],
],
],
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
'vufind' => [
'plugin_managers' => [
'recorddriver' => [
'factories' => [
'solrdefault' => 'finc\RecordDriver\Factory::getSolrDefault',
'solrmarc' => 'finc\RecordDriver\Factory::getSolrMarc',
'solrmarcfinc' => 'finc\RecordDriver\Factory::getSolrMarcFinc',
'solrmarcfincpda' => 'finc\RecordDriver\Factory::getSolrMarcFincPDA',
'solrmarcremote' => 'finc\RecordDriver\Factory::getSolrMarcRemote',
'solrmarcremotefinc' => 'finc\RecordDriver\Factory::getSolrMarcRemoteFinc',
'solrai' => 'finc\RecordDriver\Factory::getSolrAI',
'solris' => 'finc\RecordDriver\Factory::getSolrIS',
'solrlido' => 'finc\RecordDriver\Factory::getSolrLido',
'solrlidondl' => 'finc\RecordDriver\Factory::getSolrLidoNdl'
],
],
'recordtab' => [
'factories' => [
'hierarchytree' => 'finc\RecordTab\Factory::getHierarchyTree',
],
'invokables' => [
'staffviewai' => 'finc\RecordTab\StaffViewAI',
'acquisitionpda' => 'finc\RecordTab\AcquisitionPDA',
'topics' => 'finc\RecordTab\Topics',
'descriptionlido' => 'finc\RecordTab\DescriptionLido',
'toc' => 'fid_adlr\RecordTab\TOC'
],
],
],
'recorddriver_tabs' => [
'finc\RecordDriver\SolrDefault' => [
'tabs' => [
'Description' => 'Description',
'Holdings' => null,
'TOC' => 'TOC',
'UserComments' => 'UserComments',
'Reviews' => 'Reviews',
'Excerpt' => 'Excerpt',
'Preview' => 'preview',
'HierarchyTree' => 'HierarchyTree',
'Map' => 'Map',
'Similar' => null,
'Details' => 'StaffViewArray',
],
'defaultTab' => null,
],
'finc\RecordDriver\SolrMarcFinc' => [
'tabs' => [
'Description' => 'Description',
'Holdings' => null,
'TOC' => 'TOC',
'UserComments' => 'UserComments',
'Reviews' => 'Reviews',
'Excerpt' => 'Excerpt',
'Preview' => 'preview',
'HierarchyTree' => 'HierarchyTree',
'Map' => 'Map',
'Similar' => null,
'Details' => 'StaffViewMARC',
],
'defaultTab' => null,
],
'finc\RecordDriver\SolrAI' => [
'tabs' => [
'Description' => 'Description',
'Holdings' => null,
'TOC' => 'TOC',
'UserComments' => 'UserComments',
'Reviews' => 'Reviews',
'Excerpt' => 'Excerpt',
'Preview' => 'preview',
'HierarchyTree' => 'HierarchyTree',
'Map' => 'Map',
'Similar' => null,
'Details' => 'StaffViewAI',
],
'defaultTab' => null,
],
],
'recorddriver_collection_tabs' => [
'VuFind\RecordDriver\AbstractBase' => [
'tabs' => [
'CollectionList' => 'CollectionList',
'HierarchyTree' => 'CollectionHierarchyTree',
'Details' => 'StaffViewArray',
],
'defaultTab' => null,
],
],
],
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
$nonTabRecordActions = [
'PDA',
'EmailHold',
'ReportErrors',
'Acquisition'
];
// Define record view routes -- route name => controller
// Define record view routes once again to add new nonTabRecordActions
$recordRoutes = [
'record' => 'Record',
'export' => 'Export',
'resources' => 'Resources'
];
// Define static routes -- Controller/Action strings
$staticRoutes = [
'MyResearch/Acquisition',
'MyResearch/ResetPassword',
'dds/Home',
'dds/Email',
'Record/EblLink',
'Search/Sources'
];
$routeGenerator = new \VuFind\Route\RouteGenerator($nonTabRecordActions);
$routeGenerator->addRecordRoutes($config, $recordRoutes);
$routeGenerator->addStaticRoutes($config, $staticRoutes);
return $config;