October CMS后台是否可以创建嵌套Tabs?

Is It Possible to Created Nested Tabs in the Backend of October CMS?

是否可以在 October CMS 的后端创建子(或嵌套)标签?

我可以像这样创建常规标签:

tabs:
  fields:
    layout:
      label: Layout
      description: Choosed between a boxed or wide layout.
      type: dropdown
      options:
        stretched: Stretched
        boxed: Boxed
      span: left
      tab: Site
    smooth_scrolling:
      label: Smooth Scrolling
      commentAbove:  Enable or disable smooth scrolling on Windows desktop PCs.
      type: switch
      span: left
      default: true
      tab: Blog

我想做的是在特定选项卡下创建嵌套选项卡(例如,在“站点”选项卡下使用 secondaryTabs)。

这可能吗?如果是这样,知道怎么做吗?

谢谢。

目前无法使用默认的 OctoberCMS yaml 文件。

这有点 hack,但您可以在控制器 .htm 文件中创建选项卡,然后在选项卡面板内呈现表单字段。

您可以分别呈现每个选项卡级别的字段:

$this->formRender(['section' => 'outside'])
$this->formRender(['section' => 'primary'])
$this->formRender(['section' => 'secondary'])