transmuter
The module name is a play on the alchemy transmutation of elements. Elements in
this case refers to HTML elements or theme elements
This module adds transmuter plugins which can function as theme preprocessors of
Drupal templates. Transmuter plugins are discoverable in modules and theme by
using the Transmuter attribute on the plugin classes (@see README).
Attribute discovery of theme defined plugins are possible with the use of the
themespace module.
Transmuter plugins are added to the theme registry and are compatible and work
well with theme preprocess hooks which are defined by other modules and themes.
By applying to the theme registry, the definitions are cached when the theme
registry is built.
Features
Transmuter preprocess plugins work well and will interweave with other preprocess hooks defined by Drupal, modules or themes. They are applied to the theme registry and are cached with the theme registry. The plugins make good use of caching and static memory so generally provides good performance.
Transmuter plugins which are defined by themes are cached per theme and will
only be applied when that theme is active. This behavior matches what theme
preprocess hooks defined by themes would do.
Transmuters are applied to when sub-themes are active as well, and will run
execute before the sub-theme definitions.
Additional Requirements
This project requires the themespace module to help support theme discovery of transmuter plugins.
Similar projects
This module is similar to the Preprocess module