-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.php
More file actions
32 lines (25 loc) · 1.03 KB
/
ext_tables.php
File metadata and controls
32 lines (25 loc) · 1.03 KB
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
<?php
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}
Tx_Extbase_Utility_Extension::registerPlugin(
$_EXTKEY,
'Pi1',
'Flux tutorial: example plugin'
);
t3lib_extMgm::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'Flux Tutorial');
/* added by tutorial (current style) ###################################################################################
##################################################################################################################### */
/*
* important informations:
* extension key: flux_tutorial
* plugin key: pi1
*
* become:
* pluginSignature: fluxtutorial_pi1
*/
t3lib_div::loadTCA('tt_content');
$TCA['tt_content']['types']['list']['subtypes_addlist']['fluxtutorial_pi1'] = 'pi_flexform';
Tx_Flux_Core::registerConfigurationProvider('Tx_FluxTutorial_Provider_Configuration_PluginConfigurationProvider');
/* added end ######################################################################################################## */
?>