Skip to content
Snippets Groups Projects
Commit f35539cf authored by Chris Hallberg's avatar Chris Hallberg
Browse files

New format of module.config.

parent 0bd5e5cf
Branches
Tags
No related merge requests found
......@@ -18,17 +18,7 @@ $config = array(
'plugin_managers' => array(
'recorddriver' => array(
'factories' => array(
'solrvudl' => function ($sm) {
$driver = new \VuDL\RecordDriver\SolrVudl(
$sm->getServiceLocator()->get('VuFind\Config')->get('config'),
null,
$sm->getServiceLocator()->get('VuFind\Config')->get('searches')
);
$driver->setVuDLConfig(
$sm->getServiceLocator()->get('VuFind\Config')->get('VuDL')
);
return $driver;
}
'solrvudl' => array('VuDL\Factory', 'getRecordDriver'),
)
)
)
......
......@@ -49,10 +49,10 @@ class Factory
public static function getConnectionManager(ServiceManager $sm)
{
return new \VuDL\Connection\Manager(
array('Solr', 'Fedora'), $sm
);
array('Solr', 'Fedora'), $sm
);
}
/**
* Construct the Connection Fedora service.
*
......@@ -62,11 +62,11 @@ class Factory
*/
public static function getConnectionFedora(ServiceManager $sm)
{
return new \VuDL\Connection\Fedora(
$sm->get('VuFind\Config')->get('VuDL')
);
return new \VuDL\Connection\Fedora(
$sm->get('VuFind\Config')->get('VuDL')
);
}
/**
* Construct the Connection Solr service.
*
......@@ -76,10 +76,10 @@ class Factory
*/
public static function getConnectionSolr(ServiceManager $sm)
{
return new \VuDL\Connection\Solr(
$sm->get('VuFind\Config')->get('VuDL'),
$sm->get('VuFind\Search\BackendManager')->get('Solr')
);
return new \VuDL\Connection\Solr(
$sm->get('VuFind\Config')->get('VuDL'),
$sm->get('VuFind\Search\BackendManager')->get('Solr')
);
}
/**
......
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