| ... | ... |
@@ -51,3 +51,11 @@ $GLOBALS['eSM_team']['divisions'] = array |
| 51 | 51 |
'facility_management', |
| 52 | 52 |
'marketing' |
| 53 | 53 |
); |
| 54 |
+ |
|
| 55 |
+$GLOBALS['ISO_HOOKS']['addProductToCollection'][] = array('App\\Hooks\\IsotopeHooks', 'addProductToCollection');
|
|
| 56 |
+ |
|
| 57 |
+$GLOBALS['TL_MODELS']['tl_iso_product_month'] = \App\Model\IsoProductMonthModel::class; |
|
| 58 |
+ |
|
| 59 |
+\Isotope\Model\Product::registerModelType('standard', 'App\Model\Standard');
|
|
| 60 |
+ |
|
| 61 |
+$GLOBALS['FE_MOD']['isotope']['iso_cumulativefilter'] = 'App\Module\IsoCumulativeFilter'; |
| ... | ... |
@@ -20,7 +20,7 @@ $GLOBALS['TL_ASSETS']['TEAMLIST_QUICKSAND'] = '1.4'; |
| 20 | 20 |
|
| 21 | 21 |
$GLOBALS['BE_MOD']['content']['eSM_team'] = array |
| 22 | 22 |
( |
| 23 |
- 'tables' => array('tl_eSM_team_group','tl_eSM_team'),
|
|
| 23 |
+ 'tables' => array('tl_esm_team_group', 'tl_esm_team'),
|
|
| 24 | 24 |
'icon' => 'system/modules/eSM_team/html/icon.png', |
| 25 | 25 |
); |
| 26 | 26 |
|
| ... | ... |
@@ -50,4 +50,4 @@ $GLOBALS['eSM_team']['divisions'] = array |
| 50 | 50 |
'spirits', |
| 51 | 51 |
'facility_management', |
| 52 | 52 |
'marketing' |
| 53 |
-); |
|
| 54 | 53 |
\ No newline at end of file |
| 54 |
+); |
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,53 @@ |
| 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 |
+ * Asset version |
|
| 14 |
+ */ |
|
| 15 |
+$GLOBALS['TL_ASSETS']['TEAMLIST_QUICKSAND'] = '1.4'; |
|
| 16 |
+ |
|
| 17 |
+/** |
|
| 18 |
+ * Backend modules |
|
| 19 |
+ */ |
|
| 20 |
+ |
|
| 21 |
+$GLOBALS['BE_MOD']['content']['eSM_team'] = array |
|
| 22 |
+( |
|
| 23 |
+ 'tables' => array('tl_eSM_team_group','tl_eSM_team'),
|
|
| 24 |
+ 'icon' => 'system/modules/eSM_team/html/icon.png', |
|
| 25 |
+); |
|
| 26 |
+ |
|
| 27 |
+/** |
|
| 28 |
+ * Frontend modules |
|
| 29 |
+ */ |
|
| 30 |
+ |
|
| 31 |
+$GLOBALS['FE_MOD']['team']['teamlist'] = 'ModuleTeam'; |
|
| 32 |
+ |
|
| 33 |
+/** |
|
| 34 |
+ * Divisions |
|
| 35 |
+ */ |
|
| 36 |
+ |
|
| 37 |
+$GLOBALS['eSM_team']['divisions'] = array |
|
| 38 |
+( |
|
| 39 |
+ 'management', |
|
| 40 |
+ 'representatives', |
|
| 41 |
+ 'office', |
|
| 42 |
+ 'sales', |
|
| 43 |
+ 'administration', |
|
| 44 |
+ 'accounting', |
|
| 45 |
+ 'tasting', |
|
| 46 |
+ 'warehouse', |
|
| 47 |
+ 'bottling', |
|
| 48 |
+ 'cellar', |
|
| 49 |
+ 'logistics', |
|
| 50 |
+ 'spirits', |
|
| 51 |
+ 'facility_management', |
|
| 52 |
+ 'marketing' |
|
| 53 |
+); |
|
| 0 | 54 |
\ No newline at end of file |