仅用于 Typoscript 集成的 TYPO3 插件
TYPO3 Plugin nur für Typoscript-Einbindung
我有一个扩展插件,我只想通过 TypoScript 集成。它不应出现在 CE 向导的插件列表中。然后我想使用 typoscriptObject Viewhelper 在 Fluid 中加载它。
如何在向导中隐藏它?
我没有在ext_tables.php中注册插件,因此它不会显示在前端。我的插件 TS 设置是:
lib.kofcagents_headerimage = USER
lib.kofcagents_headerimage {
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
extensionName = Agents
pluginName = pi5
vendorName = Vendor
controller = Library
action = showHeaderImage
switchableControllerActions {
Library {
1 = showHeaderImage
}
}
view < plugin.tx_agents.view
persistence < plugin.tx_agents.persistence
settings < plugin.tx_agents.settings
}
我有一个扩展插件,我只想通过 TypoScript 集成。它不应出现在 CE 向导的插件列表中。然后我想使用 typoscriptObject Viewhelper 在 Fluid 中加载它。
如何在向导中隐藏它?
我没有在ext_tables.php中注册插件,因此它不会显示在前端。我的插件 TS 设置是:
lib.kofcagents_headerimage = USER
lib.kofcagents_headerimage {
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
extensionName = Agents
pluginName = pi5
vendorName = Vendor
controller = Library
action = showHeaderImage
switchableControllerActions {
Library {
1 = showHeaderImage
}
}
view < plugin.tx_agents.view
persistence < plugin.tx_agents.persistence
settings < plugin.tx_agents.settings
}