Browse code

Initial commit

Benjamin Roth authored on31/05/2016 12:14:26
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,38 @@
1
+<?php
2
+
3
+/**
4
+ * Contao Open Source CMS
5
+ *
6
+ * Copyright (c) 2005-2016 Leo Feyer
7
+ *
8
+ * @license LGPL-3.0+
9
+ */
10
+
11
+
12
+/**
13
+ * Register the namespaces
14
+ */
15
+ClassLoader::addNamespaces(array
16
+(
17
+	'eSM_pagelist',
18
+));
19
+
20
+
21
+/**
22
+ * Register the classes
23
+ */
24
+ClassLoader::addClasses(array
25
+(
26
+	// Modules
27
+	'eSM_pagelist\ModulePagelist' => 'system/modules/eSM_pagelist/modules/ModulePagelist.php',
28
+));
29
+
30
+
31
+/**
32
+ * Register the templates
33
+ */
34
+TemplateLoader::addFiles(array
35
+(
36
+	'mod_pagelist' => 'system/modules/eSM_pagelist/templates/modules',
37
+	'espl_default' => 'system/modules/eSM_pagelist/templates/pagelist',
38
+));