Last updated
Last updated
A section is a distinct area of the Umbraco backoffice, such as content, media, etc, and is accessed via a link in the main menu at the top of the Umbraco interface. Konstrukt allows you to define multiple sections in order to organise the management of your models into logical sections.
You define a section by calling one of the AddSection
methods on the root level KonstruktConfigBuilder
instance.
Adds a section to the Umbraco menu with the given name.
Adds a section to the Umbraco menu with the given name before the section with the given alias.
Adds a section to the Umbraco menu with the given name after the section with the given alias.
Sets the alias of the section.
Optional: When adding a new section, an alias is automatically generated from the supplied name for you, however you can use the SetAlias
method to override this should you need a specific alias.
You can extend existing sections adding Konstrukt trees and dashboards, context apps and virtual sub trees by calling the WithSection
method on the root level KonstruktConfigBuilder
instance.
Starts a sub configuration for the existing Umbraco section with the given alias.
Accesses the tree config of the current section. See for more info.
Adds a dashboard with the given name. See for more info.
Adds a dashboard with the given name before the dashboard with the given alias. See for more info.
Adds a dashboard with the given name after the dashboard with the given alias. See for more info.
Adds a tree to the current section. See for more info.
Adds a tree to the current section in a group with the given name. See for more info.
Adds a tree to the current section before the tree with the given alias. See for more info.
Adds a tree to the current section after the tree with the given alias. See for more info.
Adds a dashboard with the given name. See for more info.
Adds a dashboard with the given name before the dashboard with the given alias. See for more info.
Adds a dashboard with the given name after the dashboard with the given alias. See for more info.
Configuring sections in Konstrukt, the back office UI builder for Umbraco.