I have a http://typo3.org/extensions/repository/view/aw_consume plugin
I use it as a content item that it works
When I try to assign a subpage in my typoscript nothing is displayed
LOGOUT < plugin.tx_awconsume.widgets.menu
this plugin was created with extension_builder installed on TYPO3 6.1.4
update 3
plugin.tx_awconsume { view { templateRootPath = {$plugin.tx_awconsume.view.templateRootPath} partialRootPath = {$plugin.tx_awconsume.view.partialRootPath} layoutRootPath = {$plugin.tx_awconsume.view.layoutRootPath} } persistence { storagePid = {$plugin.tx_awconsume.persistence.storagePid} } features {
ext_tables.php
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::registerPlugin( $_EXTKEY, 'FeAwConsume', 'fe_awconsume' );
ext_localconf.php
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'Alexweb.' . $_EXTKEY, 'FeAwConsume', array( 'ConsumerItem' => 'list, show, new, create, delete', ),
I updated the code snippets according to @lorenz answer, but I still don't get the output
I also clicked the latest version in TER 0.1.5
update 4
I managed to get the expected result only after adding
plugin.tx_awconsume.widgets { menu = USER menu { userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run pluginName = FeAwConsume extensionName = AwConsume controller = ConsumerItem action = list vendorName = Alexweb } }
To the typoscript file of the template from \typo3conf\ext\aw_consume\Configuration\TypoScript\setup.txt
If it was originally installed by extension_builder, however I got the feeling that this is not a good idea.