The 5.7 branch of Magnolia reached End-of-Life on December 31, 2023, as specified in our End-of-life policy. This means the 5.7 branch is no longer maintained or supported. Please upgrade to the latest Magnolia release. By upgrading, you will get the latest release of Magnolia featuring significant improvements to the author and developer experience. For a successful upgrade, please consult our Magnolia 6.2 documentation. If you need help, please contact info@magnolia-cms.com.

The Content Tags module makes content tagging possible. The module contains UI classes to enable tagging on content apps and provides  tagfn  templating functions to search for tagged content.

Module structure

artifactID

magnolia-content-tags-parent

Parent reactor.

magnolia-content-tags-core

Provides the API and the tagfn templating functions.

magnolia-content-tags-ui

Provides UI components (such as actions and the tag-field) and the content-tags app.

Installing 

The module is bundled with the magnolia-enterprise-pro-webapp. All the other webapps and bundles inherit the module from this webapp (see preconfigured Magnolia bundles and webapps).

Maven is the easiest way to install the module. Add the following to your bundle. The parent POM of your webapp project should set the latest version of the module automatically. Should you need to use a specific module version, you can define it using the <version/> in the dependency.

<dependency>
  <groupId>info.magnolia.contenttags</groupId>
  <artifactId>magnolia-content-tags-ui</artifactId>
</dependency>

It is sufficient to add magnolia-content-tags-ui only to the pom file of your webapp and let let Maven handle the dependency to magnolia-content-tags-core.

<dependency>
  <groupId>info.magnolia.contenttags</groupId>
  <artifactId>magnolia-content-tags-core</artifactId>
</dependency>

Further reading