SAP Commerce Cloud CMS page 和 page template 的概念
CMS pages are laid out according to their page template.
CMS 頁面根據其template被布局。
在 SAP Commerce Accelerator項目里,一個page template包含下列內容:
-
A list of content slots predefined for the template. Template里預定義的content slot列表。
-
A FrontendTemplateName that corresponds to the name of a JSP that drives the layout of the page. 一個FrontendTemplateName,對應了一個同名的JSP文件,該文件負責定義頁面的內容。
-
A list of PageTypes that the template is restricted to.
比如下圖的含義,landing page 1 template只允許包含Content Page和Category Page.
- A VelocityTemplate to specify the layout in SmartEdit.
如何定義一個新的page template
首先定義page template本身:
INSERT_UPDATE PageTemplate;$contentCV[unique=true];uid[unique=true];name;frontendTemplateName;restrictedPageTypes(code);active[default=true] ;;ContentPage2Template;Content Page 2 Template;layout/contentLayout2Page;ContentPage然后定義content slot:
INSERT_UPDATE ContentSlotName;name[unique=true];template(uid,$contentCV)[unique=true][default='ContentPage2Template'];validComponentTypes(code) ;SiteLogo;;CMSImageComponent,BannerComponent ;HeaderLinks;;CMSLinkComponent,CMSParagraphComponent ;MiniCart;;MiniCartComponent ;NavigationBar;;NavigationComponent ;Section1;;$wideContent ;Section2;;$wideContent ;Section3;;$narrowContent ;Footer;;CMSLinkComponent,CMSParagraphComponent,FooterNavigationComponent在impex的value區域我們并沒有提供template信息,而是使用了默認的ContentPage2Template.
每個content slot都不是能夠顯示任何類型的Component,而是通過做了指定。比如,SiteLogo contentslot,只允許放置CMSImageComponent和BannerComponent.
Contentslot和page template的從屬關系:
INSERT_UPDATE ContentSlotForTemplate;$contentCV;uid[unique=true];position[unique=true];pageTemplate(uid,$contentCV)[unique=true][default='ContentPage2Template'];contentSlot(uid,$contentCV)[unique=true];allowOverwrite ;;SiteLogo-ContentPage2;SiteLogo;;SiteLogoSlot;true ;;HomepageLink-ContentPage2;HomepageNavLink;;HomepageNavLinkSlot;true ;;NavigationBar-ContentPage2;NavigationBar;;NavigationBarSlot;true ;;MiniCart-ContentPage2;MiniCart;;MiniCartSlot;true ;;Footer-ContentPage2;Footer;;FooterSlot;true ;;HeaderLinks-ContentPage2;HeaderLinks;;HeaderLinksSlot;true這個從屬關系也能在Backoffice查看:
更多Jerry的原創文章,盡在:“汪子熙”:
總結
以上是生活随笔為你收集整理的SAP Commerce Cloud CMS page 和 page template 的概念的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 什么是三级网络技术
- 下一篇: SAP Spartacus CMS 页面