0
votes

I have a Typo3 Extbase plugin called "PluginOne". And I have to call another Controller Action of the "PluginTwo" in "PluginOne".

How is it possible...

I tried this in PluginOne

<f:uri.action action='show' controller='Gallery' extensionName='PluginTwo' pluginName='PluginTwo' />

But it gnerate the wrong url, the generated url contains ID of the Current Plugin ie 'PluginOne'.

1
in extensionName, you wrote 'PluginTwo' instead of the extension's nameUrs

1 Answers

1
votes

you can use

<f:uri.action action="list" controller="Inquirer" extensionName='PluginTwo' pluginName='PluginTwo' arguments="{uid: 1}"  pageUid="62" /> 

this one, it works for me