Initialer Commit

This commit is contained in:
2017-01-26 20:46:31 +01:00
commit bf79541fc1
9 changed files with 1159 additions and 0 deletions

View File

@ -0,0 +1,7 @@
;;
; Configure what you want the autoload creator to register
;;
register_namespaces = true
register_classes = true
register_templates = true

22
proxy/config/autoload.php Normal file
View File

@ -0,0 +1,22 @@
<?php
/**
* Contao Open Source CMS
*
* Copyright (C) 2005-2012 Leo Feyer
*
* @package Proxy
* @link http://contao.org
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
*/
/**
* Register the classes
*/
ClassLoader::addClasses(array
(
// Classes
'Proxy' => 'system/modules/proxy/classes/Proxy.php',
'ProxyRequest' => 'system/modules/proxy/classes/ProxyRequest.php',
));