Browse code

Add basic trip BE_MOD

Benjamin Roth authored on26/11/2018 22:51:58
Showing1 changed files
... ...
@@ -10,5 +10,22 @@
10 10
 
11 11
 
12 12
 /**
13
+ * Backend modules
14
+ */
15
+array_insert($GLOBALS['BE_MOD'],1,array('singlereisen' => array()));
16
+
17
+$GLOBALS['BE_MOD']['singlereisen'] = array
18
+(
19
+    'sr_trips' => array
20
+    (
21
+        'tables'            => array('tl_sr_trips')
22
+    )
23
+);
24
+
25
+if ('BE' === TL_MODE) {
26
+    $GLOBALS['TL_CSS'][] = 'bundles/esalesmediasinglereisen/css/backend.css|static';
27
+}
28
+
29
+/**
13 30
  * Hooks
14 31
  */
Browse code

Initial Commit

Benjamin Roth authored on26/11/2018 15:55:30
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of eSales Media SinglereisenBundle
5
+ *
6
+ * (c) Benjamin Roth
7
+ *
8
+ * @license proprietary
9
+ */
10
+
11
+
12
+/**
13
+ * Hooks
14
+ */