The {modul} TAG loads (and executes) a module by name or if no name given, the current menus module.
→ Since BIGACE 2.2.
The menu to load the configured modul for. In most templates that will be $MENU.
The name of the module to load. If not set, we lookup the current menu and load its configured module.
The language to load modules translations with. If not set, uses the language from the current request.
This example shows how to load the menus module.
<html> <head> <title>Module of {$MENU->getName()}</title> </head> <body> {modul} OR {modul name=$MENU->getModulID()} </body> </html>
This example shows how to load a special module.
<html> <head> <title>Loading the module :contactMail:</title> </head> <body> {modul name="contactMail"} </body> </html>