49 lines
972 B
PHP
49 lines
972 B
PHP
<?php
|
|
|
|
/**
|
|
* BIBB Neo Module - Custom VuFind module for BIBB
|
|
* (Bundesinstitut für Berufsbildung)
|
|
*
|
|
* Provides custom RecordDrivers for DSpace and MARC records,
|
|
* BIBB-specific citation formats, and other customizations.
|
|
*
|
|
* @category BIBBNeo
|
|
* @package Module
|
|
* @author BIBB
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
|
|
*/
|
|
|
|
namespace BIBBNeo;
|
|
|
|
/**
|
|
* Module definition
|
|
*/
|
|
class Module
|
|
{
|
|
/**
|
|
* Get module configuration
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
return include __DIR__ . '/config/module.config.php';
|
|
}
|
|
|
|
/**
|
|
* Get autoloader configuration
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAutoloaderConfig()
|
|
{
|
|
return [
|
|
'Laminas\Loader\StandardAutoloader' => [
|
|
'namespaces' => [
|
|
__NAMESPACE__ => __DIR__ . '/src/BIBBNeo',
|
|
],
|
|
],
|
|
];
|
|
}
|
|
}
|