Last active
August 29, 2015 14:13
-
-
Save wikipeter/5397be24809def8e27cf to your computer and use it in GitHub Desktop.
TypoScript based flux settings for an FE plugin (esp. controllerActions)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// enable pi_flexform for flux via typoscript on FE plugins | |
$TCA['tt_content']['types']['list']['subtypes_addlist']['myextension_myplugin'] = 'pi_flexform'; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugin.tx_flux.providers { | |
myextension_myplugin { | |
tableName = tt_content | |
fieldName = pi_flexform | |
listType = myextension_myplugin | |
extensionKey = Vendor.MyPlugin | |
form { | |
fields { | |
switchableControllerActions { | |
label = Plugin Mode | |
name = switchableControllerActions | |
type = controllerActions | |
extensionName = Vendor.MyExtension | |
pluginName = MyController | |
actions { | |
MyController = list,accordion,show | |
} | |
subActions { | |
MyController { | |
list = show | |
accordion = show | |
} | |
} | |
requestUpdate = 1 | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment