vendor/hofff/contao-calendarfield/CT_ROOT/system/modules/hofff_calendarfield/config/autoload.php line 27

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.     'Hofff',
  15. ));
  16. /**
  17.  * Register the classes
  18.  */
  19. ClassLoader::addClasses(array
  20. (
  21.     // Forms
  22.     'Hofff\Contao\Calendarfield\FormCalendarField' => 'system/modules/hofff_calendarfield/forms/FormCalendarField.php',
  23. ));
  24. /**
  25.  * Register the templates
  26.  */
  27. TemplateLoader::addFiles(array
  28. (
  29.     'form_calendarfield' => 'system/modules/hofff_calendarfield/templates/forms',
  30. ));