November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Product version: |
EPiServer CMS 6 / 6 R2 |
---|---|
Document last saved: |
The quick publishing fuctionality allows you create and publish new pages from the Quick Links gadget on Online Center dashboard.
In order to use quick publishing you first need to configure one or more page guides. Page guide configuration should be placed as a sub element of in the <site> in episerver.config.
The attributes on the <pageGuide> elements are all required:
The <visibleProperties> collection contains a list of named properties from the page type defined in the pageTypeName attribute - these are the properties that the user can assign values to when using the page guide.
Example:
<pageGuides>
<pageGuide destinationPageId="61"
name="News"
pageTypeName="[Public] News item"
title="Publish a news item">
<visibleProperties>
<pageProperty propertyName="PageName" />
<pageProperty propertyName="MainIntro" />
<pageProperty propertyName="Author" />
<pageProperty propertyName="MainBody" />
</visibleProperties>
</pageGuide>
<pageGuide destinationPageId="37"
name="Blog"
pageTypeName="[Demo] Blog item"
title="Publish a blog item">
<visibleProperties>
<pageProperty propertyName="PageName" />
<pageProperty propertyName="MainBody" />
</visibleProperties>
</pageGuide>
</pageGuides>