This page describes the Magnolia-specific directives !inherit,!include and !override.
With these directives, you can reuse YAML file-based configurations.
!include allows you to reuse an arbitrary resource, whereas !inherit is useful for extending a definition.
YAML include
Use !include to add a reusable chunk. Include a YAML fragment one level below your new definition, or include a complete YAML definition on top of your new definition.
You can also modify the included part of the definition.
Reference the file you want to include by its resource path.
The path to such a resource has the following pattern: /<module-name>/path/to/the/reusable/chunk.yaml.
Typically, you include YAML snippets that are not proper definitions.
Do not add snippets to folders that are meant for definitions (templates, dialogs, apps).
Instead, add these snippets to a folder that is not scanned (for instance, /<your-module>/includes/).
If your !include file is not working, check that the first line in the included YAML file does not have any indentation.
Syntactic variants of the directive
The !include directive has existed since Magnolia 5.4, which introduced configuration by YAML.
With the release of 5.5.6, the directive syntax has changed slightly.
While the old syntax still works, the new one makes it possible to modify and override the included part of the definition.
The new syntax uses a colon instead of a space between !include and the path to the resource.
form:properties:!include:/module-a/includes/categorization-fields.yaml# an include within a list, add fieldsblackOrWhite:# modify properties of the field blackOrWhite, which comes from the includelabel:ChoosecolorCopy
Include a complete file and modify
Create a dialog based on a dialog from the basic page template of the MTK module.
Override its second tabMeta tab.
This is similar to the example in the Modifying reused configuration section, but here you use !include instead of !inherit.
With this directive, you can inherit from an existing registered definition item in order to create a new definition item.
Registered items can originate from YAML files, JCR configurations or even Blossom Java code.
It is not a good idea to inherit from a definition that resides in the same module as the dependent one.
Module files are loaded in order of discovery, which can vary over time.
This means that after one reload, a definition might work while the next time you edit the definition or restart your application, it may fail to discover an intra-modular dependency and to load correctly.
Due to this behavior, you should not create such dependencies as they are inherently unstable.
You can inherit only at the root level, which means you can inherit a complete app but not a subapp.
Modify the new item according to your needs.
Registered definition items are known to a registry and can be seen in the Definitions app.
Every registered definition item has an identifier that is unique among all items of the same type within their registry.
Some items are defined by name, others by ID.
To inherit an item, reference it by its identifier.
Items are inherited along with their state as known by the registry.
For instance, if an item has been decorated, the registry knows its decorated state.
Inheriting a decorated item means inheriting the decorated state of the item.
When using !inherit, you may rely on a definition item that is configured in another module.
In this case, you must take care of the loading order.
If you rely on another module, make sure it is loaded upfront.
Use module dependencies to define the loading order of the modules.
The module dependencies define the order in which modules are loaded
during startup. For example, if module-a depends on module-b,
module-b will be loaded before module-a. The order becomes
important, for example, if both module-a and module-b decorate the
same definition or if module-a inherits a definition from module-b.
On the first line of your YAML definition, use the !inherit directive followed by a colon and the identifier of the definition you want to inherit from.
By setting this dependency, we make sure that module-a is loaded before module-b.
As a result, b-component, which depends on a-component, can be initialized properly.
Modifying reused configuration
Reused configuration originating from !inherit or !include (when using the new !includesyntax) can be modified.
You can:
Add and modify properties originating from !include or !inherit.
This will merge the included or inherited node with the modifications.
Use !override to completely ignore the properties of an inherited or included node.
As a consequence, you have to add properties to the given node.
YAML override
The !override directive ignores the properties of the node to which the directive has been applied.
You have to specify all of the required properties of the overridden definition node.
The resulting definition ignores all the properties of availableComponents in the inherited definition, rendering only one available component in the main area.
Overriding list items
Due to the syntax of a YAML list, you cannot apply !override to a list item.
To bypass this constraint, use a YAML map instead of a list to apply !override to an item.
Even if the definition class expects a list, the YAML file can define the item with a map.
We apply !override to both title and tabs in the example definition above.
When overriding a bracketed list you must put the override directive between the key and list.
An example is given below.
Original
protocol:['http','https']Copy
Override
protocol:!override['https']Copy
Preserving the order of nodes
The order of nodes as defined in a decoration via !override is preserved.
This is useful especially if the only change needed to the existing configuration of nodes is their order.
Previously, when providing a new configuration with !override, the configuration would be picked up by the system, but any change in the order of the nodes (at the level of the !override) would not be respected.
For example, the list view in the workbench of the Tours app may be adjusted with the following definition decoration placing the path column before the name column: