diff --git a/src/guides/v2.3/ext-best-practices/extension-coding/example-module-adminpage.md b/src/guides/v2.3/ext-best-practices/extension-coding/example-module-adminpage.md index a0ef6035166..4ddf5dddb9b 100644 --- a/src/guides/v2.3/ext-best-practices/extension-coding/example-module-adminpage.md +++ b/src/guides/v2.3/ext-best-practices/extension-coding/example-module-adminpage.md @@ -102,6 +102,17 @@ If your module does not implement [Declarative Schema]({{ page.baseurl }}/extens ``` +If your module has a dependency with other modules, you can change the loading order sequence of the module by using the `sequence` node. +In the example below, `MyCompany_ExampleAdminNewPage` will be loaded after the `Magento_Checkout` module. + +```xml + + + + + +``` + ## Routing and navigation Before we can view the module's page, we need a way to navigate to it. These files create a link to the page in the left navigation and tells Magento how to resolve requests for that page.