Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个自己的扩展(使用扩展生成器创建)。在后端,我在编辑插件时可以选择不同的选项。如何在 PHP 中访问它们,尤其是从控制器上下文中?提前感谢您的帮助。
当您settings.在插件的 FlexForm 中使用前缀时,您可以通过$this->settingsExtbase 控制器访问它们,就像访问 TypoScript 插件设置一样。FlexForm 设置覆盖在 TypoScript 的tx_xxxx.plugin.settings.
settings.
$this->settings
tx_xxxx.plugin.settings
有关示例,请参见https://stackoverflow.com/a/19703365/2819581 。