-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_localconf.php
54 lines (45 loc) · 1.97 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
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
## Extending TypoScript from static template uid=43 to set up userdefined tag:
t3lib_extMgm::addTypoScript($_EXTKEY,'editorcfg','
tt_content.CSS_editor.ch.tx_ketroubletickets_pi1 = < plugin.tx_ketroubletickets_pi1.CSS_editor
',43);
t3lib_extMgm::addPItoST43($_EXTKEY,'pi1/class.tx_ketroubletickets_pi1.php','_pi1','list_type',0);
t3lib_extMgm::addPItoST43($_EXTKEY,'pi2/class.tx_ketroubletickets_pi2.php','_pi2','list_type',0);
t3lib_extMgm::addTypoScript($_EXTKEY,'setup','
tt_content.shortcut.20.0.conf.tx_ketroubletickets_tickets = < plugin.'.t3lib_extMgm::getCN($_EXTKEY).'_pi1
tt_content.shortcut.20.0.conf.tx_ketroubletickets_tickets.CMD = singleView
',43);
t3lib_extMgm::addPageTSConfig('
# ***************************************************************************************
# CONFIGURATION of RTE in table "tx_ketroubletickets_tickets", field "description"
# ***************************************************************************************
RTE.config.tx_ketroubletickets_tickets.description {
hidePStyleItems = H1, H4, H5, H6
proc.exitHTMLparser_db=1
proc.exitHTMLparser_db {
keepNonMatchedTags=1
tags.font.allowedAttribs= color
tags.font.rmTagIfNoAttrib = 1
tags.font.nesting = global
}
}
');
t3lib_extMgm::addPageTSConfig('
# ***************************************************************************************
# CONFIGURATION of RTE in table "tx_ketroubletickets_comments", field "content"
# ***************************************************************************************
RTE.config.tx_ketroubletickets_comments.content {
hidePStyleItems = H1, H4, H5, H6
proc.exitHTMLparser_db=1
proc.exitHTMLparser_db {
keepNonMatchedTags=1
tags.font.allowedAttribs= color
tags.font.rmTagIfNoAttrib = 1
tags.font.nesting = global
}
}
');
// register eID script
$TYPO3_CONF_VARS['FE']['eID_include']['kett'] = 'EXT:ke_troubletickets/eID/class.tx_ketroubletickets_eid.php';
?>