Browse code

Initial commit

Benjamin Roth authored on24/02/2016 13:29:52
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,39 @@
1
+<?php
2
+
3
+/**
4
+ * JustifiedGallery for Contao
5
+ *
6
+ * Copyright (c) 2016 Benjamin Roth
7
+ *
8
+ * @license LGPL-3.0+
9
+ */
10
+
11
+
12
+/**
13
+ * Register the namespaces
14
+ */
15
+ClassLoader::addNamespaces(array
16
+(
17
+	'eSM_justifiedGallery',
18
+));
19
+
20
+
21
+/**
22
+ * Register the classes
23
+ */
24
+ClassLoader::addClasses(array
25
+(
26
+	// Elements
27
+	'eSM_justifiedGallery\ContentGallery'       => 'system/modules/eSM_justifiedGallery/elements/ContentGallery.php',
28
+
29
+));
30
+
31
+
32
+/**
33
+ * Register the templates
34
+ */
35
+TemplateLoader::addFiles(array
36
+(
37
+	'gallery_justifiedGallery'      => 'system/modules/eSM_justifiedGallery/templates/gallery',
38
+
39
+));