What is the Smarty template engine?
The Smarty template engine is the underlying technology, enabling XOOPS developers to create layouts for pages, which resemble standard HTML. This makes it easy for a non-PHP designer to create visually advanced layouts without having to learn PHP Smarty Tags The XOOPS tag for using Smarty code is to enclose statements in <{ and }> The most used Smarty code is
<{$variable_name}>
<{foreach item=item_name_in_loop from=$array_containing_data}>
<{$item_name_in_loop.name_of_index}>
<{/foreach}>
$xoopsTpl->assign('variable_name', $variable_value);
$xoopsTpl->append('array_name', $variable_value);
This Q&A was found on XOOPS Web Application System : https://xoops.org/modules/smartfaq/faq.php?faqid=115