Applicable: | Confluence 5.3 and later |
Currently you can only use this module with a Space Blueprint definition.
A Space Blueprint can "promote" page Blueprints within the space. This means that if a user presses "Create", the "promoted" Blueprints will appear first. If your space Blueprint comes with a set of recommend page Blueprints, we recommend you "promote" them to make them more discoverable and easier to create. For example, the bundled Knowledge Base Space Blueprint promotes two Blueprints by default; the How To and Troubleshooting Articles.
Configuration
The root element for the Promoted Blueprints module is promoted-blueprints
. It should define one or more blueprint
elements, referring to the blueprints to be promoted.
promoted-blueprints
Element | Description |
---|---|
blueprint | This element must have a Required. |
As an example, the following code adds blueprint-key
, meeting-notes-blueprint
, blank-page
and blog-posts
as promoted content items in the create dialog.
1 2<space-blueprint key="example-space-blueprint" i18n-name-key="confluence.blueprints.space.example.name" category="examples"> <promoted-blueprints> <blueprint ref="com.your.plugin.key:blueprint-key"/> <blueprint ref="com.atlassian.confluence.plugins.confluence-business-blueprints:meeting-notes-blueprint"/> <blueprint ref="com.atlassian.confluence.plugins.confluence-create-content-plugin:create-blank-page"/> <blueprint ref="com.atlassian.confluence.plugins.confluence-create-content-plugin:create-blog-post"/> </promoted-blueprints> ... </space-blueprint>
Rate this page: