Skip to content

Commit fcbbc21

Browse files
authored
Merge pull request #6516 from umbraco/customizing/addNewArticles
Add new Customizing articles to SUMMARY
2 parents 1175381 + fcfa93b commit fcbbc21

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

14/umbraco-cms/SUMMARY.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
* [Circular Dependencies](implementation/services/circular-dependencies.md)
138138
* [Unit Testing](implementation/unit-testing.md)
139139

140-
## Customize the Backoffice <a href="#customizing" id="customizing"></a>
140+
## Customize the Backoffice
141141

142142
* [Extend and customize the editing experience](customizing/extend-and-customize-editing-experience.md)
143143
* [Project Bellissima](customizing/project-bellissima.md)
@@ -162,6 +162,8 @@
162162
* [Extension Registry](customizing/extending-overview/extension-registry/README.md)
163163
* [Extension Registration](customizing/extending-overview/extension-registry/extension-registry.md)
164164
* [Extension Manifest](customizing/extending-overview/extension-registry/extension-manifest.md)
165+
* [Extension Kind](customizing/extending-overview/extension-kind.md)
166+
* [Extension Conditions](customizing/extending-overview/extension-conditions.md)
165167
* [Extension Types](customizing/extending-overview/extension-types/README.md)
166168
* [Menu](customizing/extending-overview/extension-types/menu.md)
167169
* [Header Apps](customizing/extending-overview/extension-types/header-apps.md)
@@ -174,6 +176,7 @@
174176
* [Kind](customizing/extending-overview/extension-types/kind.md)
175177
* [Backoffice Entry Point](customizing/extending-overview/extension-types/backoffice-entry-point.md)
176178
* [Extension Conditions](customizing/extending-overview/extension-types/condition.md)
179+
* [Custom Extension types](customizing/extending-overview/custom-extension-type.md)
177180
* [Dashboards](customizing/dashboards.md)
178181
* [Sections & Trees](customizing/section-trees/README.md)
179182
* [Sections](customizing/section-trees/sections/README.md)
@@ -194,6 +197,7 @@
194197
* [Tracking References](customizing/property-editors/tracking.md)
195198
* [Content Picker Value Converter Example](customizing/property-editors/full-examples-value-converters.md)
196199
* [Property Dataset](customizing/property-editors/property-dataset.md)
200+
* [Integrate Validaction](customizing/property-editors/integrate-validation.md)
197201
* [Backoffice Localization](customizing/ui-localization.md)
198202
* [Workspaces](customizing/workspaces/README.md)
199203
* [Workspace Context](customizing/workspaces/workspace-context.md)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Custom Extension Type
1+
# Custom Extension Types
22

33
The extension registry is an open system, which can hold any Extension Manifest Type. This article describes how you can declare your types.
44
Types can be declared for re-useability/maintainability or to open up for other package extensions.
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ When declaring multiple conditions all of them must be permitted for the extensi
3535

3636
## Condition Configuration
3737

38-
```html
39-
<a href="#using-conditions" id="using-conditions"></a>
40-
```
41-
4238
The conditions are defined as an array of condition configurations. Each entry can contain the following properties:
4339

4440
* `alias`- The alias of the condition to utilize.
@@ -49,5 +45,5 @@ The conditions are defined as an array of condition configurations. Each entry c
4945
Learn about built-in conditions and how to create your own:
5046

5147
{% content-ref url="../extension-types/condition.md" %}
52-
[Condition Extension Type](../extension-types/condition.md)
48+
[Condition Extension Type](extension-types/condition.md)
5349
{% endcontent-ref %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ const manifest = {
5151
Learn more about Kinds and how to create your own:
5252

5353
{% content-ref url="../extension-types/kind.md" %}
54-
[Kind Extension Type](../extension-types/kind.md)
54+
[Kind Extension Type](extension-types/kind.md)
5555
{% endcontent-ref %}

0 commit comments

Comments
 (0)