Smarty Tags

Only for administration templates:

The following TAGs are only meant for developer who create own admin templates.

Extension TAGs

The following TAGs are available through Extensions, which are linked on their description page.

News Extension

Comments Extension

FAQ Extension

Smileys Extension

  • {smileys} - a modifier to parse smileys to icons in any string

Smarty Modifier

Smarty Help

Read more about using Smarty int the official Docu at:

Writing own Smarty TAGs

Smarty plugin directory: /addon/smarty/plugins/

  • Lets assume you want to create the function/TAG {hello_world}

  • Create a file called /addon/smarty/plugins/function.hello_world.php

  • Place a function inside:

    :::php function smarty_function_hello_world($params, &$smarty) { echo "Hello World, says " . $params['name'] . "!"; }

  • Call {hello_world name="Bob"} inside your template

The output would be: Hello World, says Bob!{html}