SilverStripe:如何在另一个选项卡之前插入一个选项卡?

发布于 2024-10-18 07:17:52 字数 394 浏览 3 评论 0原文

我试图在 Root.Content.Main 之前插入一个新的管理选项卡,但没有任何运气。我已经尝试过:

$fields->insertBefore(new Tab('Root.Content.Overview', 'Overview'), 'Root.Content.Main');

$fields->addFieldToTab('Root.Content', new Tab('OverviewTab', 'Root.Content.Overview'), 'Root.Content.Main');

没有任何运气。

有人有什么想法吗?我已经查遍了 API,但没有太多关于选项卡命名系统如何工作的解释。

I am trying to insert a new admin tab before Root.Content.Main without any luck. I've tried:

$fields->insertBefore(new Tab('Root.Content.Overview', 'Overview'), 'Root.Content.Main');

and

$fields->addFieldToTab('Root.Content', new Tab('OverviewTab', 'Root.Content.Overview'), 'Root.Content.Main');

without any luck.

Anyone have any ideas? I've hunted through the API but there isn't much explanation as to how the tab naming system works.

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

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

发布评论

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

评论(1

红衣飘飘貌似仙 2024-10-25 07:17:52

想通了...

$fields->insertBefore(new Tab('Overview', 'Project Overview'), 'Main');

Figured it out...

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