SilverStripe:如何在另一个选项卡之前插入一个选项卡?
我试图在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了...
Figured it out...