Skip to content
Snippets Groups Projects
Commit f16410cf authored by Dorian Merz's avatar Dorian Merz
Browse files

Merge branch 'master-v5' into instance/fid

parents c198cad0 9d804fbb
No related merge requests found
<?php <?php
namespace finc\Module\Configuration; namespace finc\Module\Configuration;
use finc\Controller\MyResearchController;
use finc\Controller\RecordController; use finc\Controller\RecordController;
use VuFind\Controller\AbstractBaseFactory;
use VuFind\Controller\AbstractBaseWithConfigFactory; use VuFind\Controller\AbstractBaseWithConfigFactory;
$config = [ $config = [
...@@ -24,21 +26,15 @@ $config = [ ...@@ -24,21 +26,15 @@ $config = [
], ],
'controllers' => [ 'controllers' => [
'factories' => [ 'factories' => [
//'ajax' => 'finc\Controller\Factory::getAjaxController', MyResearchController::class => AbstractBaseFactory::class,
'finc\Controller\AjaxController' =>
'VuFind\Controller\AjaxControllerFactory',
'dds' =>
'finc\Controller\Factory::getDocumentDeliveryServiceController',
'my-research' => 'finc\Controller\Factory::getMyResearchController',
RecordController::class => AbstractBaseWithConfigFactory::class, RecordController::class => AbstractBaseWithConfigFactory::class,
'finc\Controller\AjaxController' => 'VuFind\Controller\AjaxControllerFactory',
'dds' => 'finc\Controller\Factory::getDocumentDeliveryServiceController',
'resources' => 'finc\Controller\Factory::getAmslResourceController' 'resources' => 'finc\Controller\Factory::getAmslResourceController'
], ],
'aliases' => [ 'aliases' => [
\VuFind\Controller\MyResearchController::class => MyResearchController::class,
\VuFind\Controller\RecordController::class => RecordController::class, \VuFind\Controller\RecordController::class => RecordController::class,
//'AJAX' => 'finc\Controller\AjaxController',
//'ajax' => 'finc\Controller\AjaxController'
// Overrides:
'VuFind\Controller\AjaxController' => 'finc\Controller\AjaxController' 'VuFind\Controller\AjaxController' => 'finc\Controller\AjaxController'
] ]
], ],
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment