2
sure, assign it a smarty value.. ;)
use
$module_name = $module->getVar('name');
to grab the value
then assign the smarty where you want >
$smartyid['module_name'] = trim($module_name);
resultant smarty would then be
<{$smartyid.module_name}>
or use: $xoopsTpl->assign('current_module_name', trim($module_name));
the smarty then would be <{$current_module_name}>
of course (smartyid) should be name appropriately like the rest of your smarty tags..
think that should work...
but i'm no expert.