Content Types module
License |
|
Issues |
|
Git |
Modules / content-types |
Maven site |
|
Latest |
2.0.0 |
The Content Types module allows defining Magnolia content types, for example, in a single YAML file of a light module.
By defining a custom node type in a single YAML file of a light module, there is no need to deploy a WAR file or restart a Magnolia instance. With just a few lines of YAML code referring to the content type definition, you can now quickly create a content app descriptor managing the content items defined.
Installing with Maven
Maven is the easiest way to install the module. Add the following to your bundle:
<dependency>
<groupId>info.magnolia.types</groupId>
<artifactId>magnolia-content-types</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>info.magnolia.types</groupId>
<artifactId>magnolia-content-types-jcr</artifactId>
<version>2.0.0</version>
</dependency>
Usage
See the following pages for more information about:
Follow the Content Types tutorial to learn how to use Magnolia content types, create content type definitions and corresponding apps. |