vendor/terminal42/dcawizard/config/autoload.php line 17

Open in your IDE?
  1. <?php
  2. /**
  3.  * dcawizard extension for Contao Open Source CMS
  4.  *
  5.  * @copyright  Copyright (c) 2014, terminal42 gmbh
  6.  * @author     terminal42 gmbh <info@terminal42.ch>
  7.  * @license    http://opensource.org/licenses/lgpl-3.0.html LGPL
  8.  * @link       https://github.com/terminal42/contao-dcawizard
  9.  */
  10. /**
  11.  * Register the classes
  12.  */
  13. ClassLoader::addClasses(array
  14. (
  15.     'DcaWizard'             => 'system/modules/dcawizard/widgets/DcaWizard.php',
  16.     'DcaWizardMultilingual' => 'system/modules/dcawizard/widgets/DcaWizardMultilingual.php',
  17.     'DcaWizardHelper'       => 'system/modules/dcawizard/classes/DcaWizardHelper.php',
  18. ));
  19. /**
  20.  * Register the templates
  21.  */
  22. TemplateLoader::addFiles(array
  23. (
  24.     'be_widget_dcawizard' => 'system/modules/dcawizard/templates'
  25. ));