是否有可能在10月份CMS的后端创建嵌套选项卡?

时间:2017-01-29 15:37:01

标签: octobercms octobercms-backend

是否可以在10月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

我想要做的是在特定标签下创建嵌套标签(例如,使用“网站”标签下的“辅助标签”)。

这可能吗?如果是这样,任何想法怎么做?

感谢。

1 个答案:

答案 0 :(得分:0)

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

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

您可以分别渲染每个标签级别的字段:

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