Browse code

Update

Benjamin Roth authored on28/03/2023 09:47:26
Showing1 changed files
... ...
@@ -27,6 +27,7 @@ ClassLoader::addClasses(array
27 27
   'eSM_isotope_custom\Pdf\Document'           => 'system/modules/eSM_isotope_custom/classes/Document.php',
28 28
   'eSM_isotope_custom\Pdf\ESMPDF'              => 'system/modules/eSM_isotope_custom/classes/ESMPDF.php',
29 29
   'eSM_isotope_custom\Pdf\BBPDF'              => 'system/modules/eSM_isotope_custom/classes/BBPDF.php',
30
+  'eSM_isotope_custom\Pdf\AFPDF'              => 'system/modules/eSM_isotope_custom/classes/AFPDF.php',
30 31
   'eSM_isotope_custom\Pdf\ExpertisePdf'         => 'system/modules/eSM_isotope_custom/classes/ExpertisePdf.php',
31 32
   'eSM_isotope_custom\tl_iso_product'  => 'system/modules/eSM_isotope_custom/classes/tl_iso_product.php',
32 33
 
Browse code

Update

Benjamin Roth authored on20/03/2023 16:19:16
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,56 @@
1
+<?php
2
+
3
+/**
4
+ * Contao Open Source CMS
5
+ *
6
+ * Copyright (c) 2005-2015 Leo Feyer
7
+ *
8
+ * @license LGPL-3.0+
9
+ */
10
+
11
+
12
+/**
13
+ * Register the namespaces
14
+ */
15
+ClassLoader::addNamespaces(array
16
+(
17
+	'eSM_isotope_custom',
18
+));
19
+
20
+
21
+/**
22
+ * Register the classes
23
+ */
24
+ClassLoader::addClasses(array
25
+(
26
+  // Classes
27
+  'eSM_isotope_custom\Pdf\Document'           => 'system/modules/eSM_isotope_custom/classes/Document.php',
28
+  'eSM_isotope_custom\Pdf\ESMPDF'              => 'system/modules/eSM_isotope_custom/classes/ESMPDF.php',
29
+  'eSM_isotope_custom\Pdf\BBPDF'              => 'system/modules/eSM_isotope_custom/classes/BBPDF.php',
30
+  'eSM_isotope_custom\Pdf\ExpertisePdf'         => 'system/modules/eSM_isotope_custom/classes/ExpertisePdf.php',
31
+  'eSM_isotope_custom\tl_iso_product'  => 'system/modules/eSM_isotope_custom/classes/tl_iso_product.php',
32
+
33
+  // Elements
34
+  'eSM_isotope_custom\ContentElement'   => 'system/modules/eSM_isotope_custom/elements/ContentElement.php',
35
+
36
+  // Models
37
+  'eSM_isotope_custom\Model\Standard'  => 'system/modules/eSM_isotope_custom/models/Standard.php',
38
+  'eSM_isotope_custom\Model\AffentalerRule'  => 'system/modules/eSM_isotope_custom/models/AffentalerRule.php',
39
+  'eSM_isotope_custom\Model\ProductCollectionSurcharge\AffentalerRule'  => 'system/modules/eSM_isotope_custom/models/ProductCollectionSurcharge/AffentalerRule.php',
40
+
41
+  // Modules
42
+  'eSM_isotope_custom\Pdf\ModuleExpertisePdf'  => 'system/modules/eSM_isotope_custom/modules/ModuleExpertisePdf.php',
43
+  'eSM_isotope_custom\Module\CumulativeFilter'  => 'system/modules/eSM_isotope_custom/modules/CumulativeFilter.php',
44
+
45
+  // Hooks
46
+  'eSM_isotope_custom\InsertTag'    => 'system/modules/eSM_isotope_custom/hooks/InsertTag.php',
47
+  'eSM_isotope_custom\IsotopeHooks' => 'system/modules/eSM_isotope_custom/hooks/IsotopeHooks.php',
48
+));
49
+
50
+/**
51
+ * Register the templates
52
+ */
53
+TemplateLoader::addFiles(array
54
+(
55
+  'iso_payment_sparkasse'                => 'system/modules/isotope/templates/payment',
56
+));
0 57
\ No newline at end of file