... | ... |
@@ -10,12 +10,6 @@ declare(strict_types=1); |
10 | 10 |
* @license commercial |
11 | 11 |
*/ |
12 | 12 |
|
13 |
-use vossmedien\DacoreBundle\Controller\Frontend\Module\JoblistModuleController; |
|
14 |
-use vossmedien\DacoreBundle\Controller\Frontend\Module\JobSearchModuleController; |
|
15 |
-use vossmedien\DacoreBundle\Controller\Frontend\Module\JobReaderModuleController; |
|
16 | 13 |
use vossmedien\DacoreBundle\Controller\Frontend\Module\JobApplicationFormController; |
17 | 14 |
|
18 | 15 |
$GLOBALS['TL_DCA']['tl_module']['palettes'][JobApplicationFormController::TYPE] = '{title_legend},name,type;{dacore_form_legend},form;{redirect_legend},jumpTo;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
19 |
-$GLOBALS['TL_DCA']['tl_module']['palettes'][JoblistModuleController::TYPE] = '{title_legend},name,type;{alox_legend},jumpTo,perPage;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
|
20 |
-$GLOBALS['TL_DCA']['tl_module']['palettes'][JobSearchModuleController::TYPE] = '{title_legend},name,type;{aloxSearch_legend},jumpTo;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
|
21 |
-$GLOBALS['TL_DCA']['tl_module']['palettes'][JobReaderModuleController::TYPE] = '{title_legend},name,type;{aloxReader_legend},overviewPage;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,21 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+declare(strict_types=1); |
|
4 |
+ |
|
5 |
+/* |
|
6 |
+ * This file is part of dacore bundle for Contao. |
|
7 |
+ * |
|
8 |
+ * (c) Benjamin Roth |
|
9 |
+ * |
|
10 |
+ * @license commercial |
|
11 |
+ */ |
|
12 |
+ |
|
13 |
+use vossmedien\DacoreBundle\Controller\Frontend\Module\JoblistModuleController; |
|
14 |
+use vossmedien\DacoreBundle\Controller\Frontend\Module\JobSearchModuleController; |
|
15 |
+use vossmedien\DacoreBundle\Controller\Frontend\Module\JobReaderModuleController; |
|
16 |
+use vossmedien\DacoreBundle\Controller\Frontend\Module\JobApplicationFormController; |
|
17 |
+ |
|
18 |
+$GLOBALS['TL_DCA']['tl_module']['palettes'][JobApplicationFormController::TYPE] = '{title_legend},name,type;{dacore_form_legend},form;{redirect_legend},jumpTo;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
|
19 |
+$GLOBALS['TL_DCA']['tl_module']['palettes'][JoblistModuleController::TYPE] = '{title_legend},name,type;{alox_legend},jumpTo,perPage;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
|
20 |
+$GLOBALS['TL_DCA']['tl_module']['palettes'][JobSearchModuleController::TYPE] = '{title_legend},name,type;{aloxSearch_legend},jumpTo;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |
|
21 |
+$GLOBALS['TL_DCA']['tl_module']['palettes'][JobReaderModuleController::TYPE] = '{title_legend},name,type;{aloxReader_legend},overviewPage;{template_legend:hide},customTpl;{protected_legend:hide},protected;{expert_legend:hide},guests,cssID'; |