vendor/terminal42/contao-ajaxform/config/autoload.php line 17

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