Skip to content

Commit 426c8fe

Browse files
committed
docs: fix links for umbraco-package.md that were not updated when the section "Customize the backoffice" was renamed to "Customizing"
1 parent 55ac37e commit 426c8fe

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

15/umbraco-cms/customizing/development-flow/vite-package-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default class MyElement extends LitElement {
185185
```
186186
{% endhint %}
187187

188-
Learn more about the abilities of the manifest file in the [Umbraco Package Manifest](../../customize-the-backoffice/umbraco-package.md) article.
188+
Learn more about the abilities of the manifest file in the [Umbraco Package Manifest](../umbraco-package.md) article.
189189

190190
#### Testing your package
191191

15/umbraco-cms/customizing/extending-overview/extension-registry/extension-manifest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ Many of the Extension Types require additional information declared as part of a
5353

5454
An Extension Manifest can be declared in multiple ways.
5555

56-
The primary way is to declare it as part of the [Umbraco Package Manifest](../../../customize-the-backoffice/umbraco-package.md).
56+
The primary way is to declare it as part of the [Umbraco Package Manifest](../../umbraco-package.md).
5757

5858
Additionally, two Extension types can be used to register other extensions.
5959

60-
A typical use case is to declare one main Extension Manifest as part of the [Umbraco Package Manifest](../../../customize-the-backoffice/umbraco-package.md). Such main Extension Manifest would be using one of the following types:
60+
A typical use case is to declare one main Extension Manifest as part of the [Umbraco Package Manifest](../../umbraco-package.md). Such main Extension Manifest would be using one of the following types:
6161

6262
### The `bundle` extension type
6363

15/umbraco-cms/customizing/foundation/contexts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ This page is a work in progress and may undergo further revisions, updates, or a
1010

1111
Below you can find some articles on how you can work with different contexts:
1212

13-
## [Property Dataset Context](../../../customize-the-backoffice/foundation/contexts/property-dataset-context.md)
13+
## [Property Dataset Context](./property-dataset-context.md)
1414

1515
A Dataset Context is the connection point between a Property Editor and a Workspace and covers a set of properties.

15/umbraco-cms/customizing/foundation/routes.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ This page is a work in progress and may undergo further revisions, updates, or a
1212

1313
The routing in the backoffice is flexible and customizable. In this article, you can find a couple of starting points for routing.
1414

15-
The overall **divider** is the [Section](../../customize-the-backoffice/extending-overview/extension-types/section.md) which is a `ManifestSection` extension type. It is also used internally by the following sections: Content, Media, Settings, Members, and so on.
15+
The overall **divider** is the [Section](../extending-overview/extension-types/sections/README.md) which is a `ManifestSection` extension type. It is also used internally by the following sections: Content, Media, Settings, Members, and so on.
1616

1717
Depending on which section you are working on, there are different options:
1818

19-
* **SectionView**: The [Section View](../../customize-the-backoffice/extending-overview/extension-types/section-view.md) is a view in a section and one of the automatic router extension types. It can be an entry point to a section. If a section has multiple views defined (or both dashboards and views) then the tabs and icons will be rendered. As some examples, you can check the **Packages** and **Member** sections.
20-
* **Dashboard**: The [Dashboard](../../customize-the-backoffice/extending-overview/extension-types/dashboard.md) is an entry point to a section. If there is more than one section view or dashboard then the defined tabs and icons will be rendered to make it possible to navigate.
21-
* **Workspace**: The [Workspace](../../customize-the-backoffice/workspaces.md) concept has built-in features to facilitate editing of an entity of a certain entity type. It is used by many entities in the backoffice like content, media, content types, data types, dictionaries and so on.
22-
* **Custom element**: A [Custom Element](umbraco-element/) is a section that can be configured to use any web component as the **entry point**. The `element()` can be configured in the manifest. By doing this we'll disable the possibility of using dashboards and section views for the section since they will not be automatically routed/rendered. This option should be used only when necessary.
19+
* **SectionView**: The [Section View](../extending-overview/extension-types/sections/section-view.md) is a view in a section and one of the automatic router extension types. It can be an entry point to a section. If a section has multiple views defined (or both dashboards and views) then the tabs and icons will be rendered. As some examples, you can check the **Packages** and **Member** sections.
20+
* **Dashboard**: The [Dashboard](../extending-overview/extension-types/dashboard.md) is an entry point to a section. If there is more than one section view or dashboard then the defined tabs and icons will be rendered to make it possible to navigate.
21+
* **Workspace**: The [Workspace](../../customizing/workspaces.md) concept has built-in features to facilitate editing of an entity of a certain entity type. It is used by many entities in the backoffice like content, media, content types, data types, dictionaries and so on.
22+
* **Custom element**: A [Custom Element](umbraco-element/README.md) is a section that can be configured to use any web component as the **entry point**. The `element()` can be configured in the manifest. By doing this we'll disable the possibility of using dashboards and section views for the section since they will not be automatically routed/rendered. This option should be used only when necessary.
2323

2424
### Building routing
2525

@@ -60,7 +60,7 @@ The order in which the routes are defined is important as the first match will b
6060
In the render method of the element, render the `umb-router-slot`:
6161

6262
```html
63-
<umb-router-slot .routes=${this._routes}></umb-router-slot>
63+
<umb-router-slot .routes=${this._routes}></umb-router-slot>
6464
```
6565

6666
One can create links to allow navigation to a given route:

15/umbraco-cms/customizing/foundation/working-with-data/context-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ The consumption of the Additional API will never happen as the token uses the sa
129129
This is only relevant if you are going to make multiple context API for the same context. Discriminator only gives value for consumption of Context APIs that have a varying interface. The backoffice uses this for the different types of Workspace Contexts.
130130
{% endhint %}
131131

132-
In some cases, it is needed to have different APIs for the same context. For example, the [Workspace Contexts](../../../customize-the-backoffice/extending-overview/extension-types/workspace-context.md).
132+
In some cases, it is needed to have different APIs for the same context. For example, the [Workspace Contexts](../../../customizing/extending-overview/extension-types/workspace-context.md).
133133

134134
If someone wants the workspace name, they might not care about the specific API of the Workspace Context. These implementations can use a standard Context Token with a type of generic Workspace Context.
135135

15/umbraco-cms/customizing/property-editors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This section describes how to work with and create Property Editors. A property
1818

1919
A property editor is an editor used to insert content into Umbraco. A Property Editor is composed of two extensions: Property Editor Schema and Property Editor UI.
2020

21-
## [Package Manifest](../../customize-the-backoffice/umbraco-package.md)
21+
## [Package Manifest](../umbraco-package.md)
2222

2323
Reference for the package.manifest JSON file format to register one or more property editors for Umbraco.
2424

15/umbraco-cms/customizing/property-editors/build-a-block-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class UnicornBlocksConfigurationEditor : ConfigurationEditor<BlockListCon
5757
{% hint style="info" %}
5858
It is not strictly necessary to define your own property editor in C#. As outlined in the [Composition](composition/) article, all Umbraco core property editors can be reused.
5959

60-
The code sample above inherits all functionality from Block List and adds no new functionality. If this is sufficient, you can use the Block List property editor alias `"Umbraco.BlockList"` as Property Editor Schema in your [package manifest](../../customize-the-backoffice/umbraco-package.md).
60+
The code sample above inherits all functionality from Block List and adds no new functionality. If this is sufficient, you can use the Block List property editor alias `"Umbraco.BlockList"` as Property Editor Schema in your [package manifest](../umbraco-package.md).
6161

6262
It is, however, recommended to declare your own Block Editors in C#. As you will see in the following, the property editor alias (`"MyOwn.UnicornBlocksEditor"`) will be part of the data structure. For any eventual future extensibility, it is good to have the correct alias in the content structure from the beginning.
6363
{% endhint %}

0 commit comments

Comments
 (0)