system/modules/sg-history/config/autoload.php line 15

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2016 Leo Feyer
  6.  *
  7.  * @license LGPL-3.0+
  8.  */
  9. /**
  10.  * Register the namespaces
  11.  */
  12. ClassLoader::addNamespaces(array
  13. (
  14.     'SgM',
  15. ));
  16. /**
  17.  * Register the classes
  18.  */
  19. ClassLoader::addClasses(array
  20. (
  21.     // Core
  22.     'SgM\SgHistory'              => 'system/modules/sg-history/core/library/SgHistory/SgHistory.php',
  23.     // Models
  24.     'SgM\SgHistoryCategoryModel' => 'system/modules/sg-history/models/SgHistoryCategoryModel.php',
  25.     'SgM\SgHistoryModel'         => 'system/modules/sg-history/models/SgHistoryModel.php',
  26.     // Modules
  27.     'SgM\SgModuleHistory'        => 'system/modules/sg-history/modules/SgModuleHistory.php',
  28.     'SgM\SgModuleHistoryList'    => 'system/modules/sg-history/modules/SgModuleHistoryList.php',
  29. ));
  30. /**
  31.  * Register the templates
  32.  */
  33. TemplateLoader::addFiles(array
  34. (
  35.     'mod_history_list' => 'system/modules/sg-history/templates/modules',
  36. ));