forked from Coders-Care/dmmjobcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_localconf.php
41 lines (29 loc) · 1.02 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_job=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_sector=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_category=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_discipline=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_region=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_education=1
');
t3lib_extMgm::addUserTSConfig('
options.saveDocNew.tx_dmmjobcontrol_contact=1
');
## Extending TypoScript from static template uid=43 to set up userdefined tag:
t3lib_extMgm::addTypoScript($_EXTKEY,'editorcfg','
tt_content.CSS_editor.ch.tx_dmmjobcontrol_pi1 = < plugin.tx_dmmjobcontrol_pi1.CSS_editor
',43);
t3lib_extMgm::addPItoST43($_EXTKEY,'pi1/class.tx_dmmjobcontrol_pi1.php','_pi1','list_type',0);
?>