Browse code

Initial commit

Benjamin Roth authored on13/07/2016 09:17:47
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,38 @@
1
+<?php
2
+
3
+/**
4
+ * ArtLayout for Contao
5
+ *
6
+ * Copyright (c) 2016 Benjamin Roth
7
+ *
8
+ * @link    http://www.esales-media.de
9
+ * @license commercial
10
+ */
11
+
12
+/**
13
+ * Register the namespaces
14
+ */
15
+ClassLoader::addNamespaces(array
16
+(
17
+	'eSM_artLayout',
18
+));
19
+
20
+/**
21
+ * Register the classes
22
+ */
23
+ClassLoader::addClasses(array
24
+(
25
+	// Models
26
+	'eSM_artLayout\ArticleLayoutsModel'     => 'system/modules/eSM_artLayout/models/ArticleLayoutsModel.php',
27
+
28
+	// Modules
29
+	'eSM_artLayout\ModuleArticle'           => 'system/modules/eSM_artLayout/modules/ModuleArticle.php',
30
+));
31
+
32
+/**
33
+ * Register the templates
34
+ */
35
+TemplateLoader::addFiles(array
36
+(
37
+	'mod_article'      => 'system/modules/eSM_artLayout/templates/modules',
38
+));