{assign var=theme_name value=$xoTheme->folderName}>
<{php}>
/** Defined an extra SMARTY variable $xoops_themeurl, which is identical to $xoops_imageurl, for literal consistence only (siteurl/themes/themename) */
$this->assign("xoops_themeurl", $this->_tpl_vars["xoops_url"]."/themes/".$this->_tpl_vars["xoops_theme"]);
/** If a module has its own css (located themes/themename/modules/dirname/style.css), append it to $xoops_module_header */
if(file_exists(XOOPS_ROOT_PATH."/themes/".$this->_tpl_vars["xoops_theme"]."/modules/".$this->_tpl_vars["xoops_dirname"]."/style.css")) {
$this->assign("xoops_module_header",
$this->_tpl_vars["xoops_module_header"]."\n".
"_tpl_vars["xoops_themeurl"]."/modules/".$this->_tpl_vars["xoops_dirname"]."/style.css\"/>\n");
}
/** Defined an extra SMARTY variable $modulename for display current module name defined by webmaster in xoops administration */
GLOBAL $xoopsModule;
$modulename = (isset($xoopsModule) ? $xoopsModule->getVar('name') :'system');
$GLOBALS['xoopsTpl']->assign('modulename', $modulename);
/** add JQuery and JQuery UI */
global $xoTheme;
$xoTheme->addScript("browse.php?Frameworks/jquery/jquery.js");
$xoTheme->addScript("browse.php?Frameworks/jquery/plugins/jquery.ui.js");
$this->assign('xoops_module_header', $xoTheme->renderMetas(null, true));
<{/php}>