<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2016 Leo Feyer
*
* @license LGPL-3.0+
*/
/**
* Register the namespaces
*/
ClassLoader::addNamespaces(array
(
'SgM',
));
/**
* Register the classes
*/
ClassLoader::addClasses(array
(
// Core
'SgM\SgHistory' => 'system/modules/sg-history/core/library/SgHistory/SgHistory.php',
// Models
'SgM\SgHistoryCategoryModel' => 'system/modules/sg-history/models/SgHistoryCategoryModel.php',
'SgM\SgHistoryModel' => 'system/modules/sg-history/models/SgHistoryModel.php',
// Modules
'SgM\SgModuleHistory' => 'system/modules/sg-history/modules/SgModuleHistory.php',
'SgM\SgModuleHistoryList' => 'system/modules/sg-history/modules/SgModuleHistoryList.php',
));
/**
* Register the templates
*/
TemplateLoader::addFiles(array
(
'mod_history_list' => 'system/modules/sg-history/templates/modules',
));