如何替换typo3 10.4中的不推荐使用的sobe代码

发布于 2025-01-20 13:55:33 字数 456 浏览 4 评论 0原文

我使用 SOBE 继承了旧的 TYPO3 扩展。据我所知,它已被弃用,但似乎没有关于如何替换它的文档。

扩展正在使用后端表单,并且以下行抛出错误:

if (is_array($GLOBALS['SOBE']->editconf['tt_content']) && reset($GLOBALS['SOBE']->editconf['tt_content']) === 'new') {

错误是:

Cannot access protected property TYPO3\CMS\Backend\Controller\EditDocumentController::$editconf

Var $GLOBALS['SOBE'] 仍然存在,并且还有 editconf,但它不起作用。

我该如何替换或重写这段代码?

I inherited an old TYPO3 Extension using SOBE. As far as I unterstand it's deprecated, but it seems there is no documentation on how to replace it.

The Extension is using Backend Forms and the following line is throwing an error:

if (is_array($GLOBALS['SOBE']->editconf['tt_content']) && reset($GLOBALS['SOBE']->editconf['tt_content']) === 'new') {

The error is:

Cannot access protected property TYPO3\CMS\Backend\Controller\EditDocumentController::$editconf

The Var $GLOBALS['SOBE'] is still there, and there is also editconf, but it's not working.

How can I replace this code or rewrite it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

腹黑女流氓 2025-01-27 13:55:33

多年来,SOBE 物体已被部分地移除。由于有多种使用方法 - 请参阅 https://docs.typo3.org/c/typo3/cms-core/main/en-us/search.html?q=sobe&check_keywords=yes&area=default - 您可能需要仔细看看替换此代码的确切部分是什么。

我想您可以在 https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.2/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.html?highlight=editconf

The SOBE object is part by part removed since years. As there are multiple ways for using it - see https://docs.typo3.org/c/typo3/cms-core/main/en-us/search.html?q=sobe&check_keywords=yes&area=default - you may need to take a closer look what is the exact part of replacing this code.

I would guess you can see more at https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/9.2/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.html?highlight=editconf.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文