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