ich bin grade dabei mir einen kleinen Tag für eine Infobox zu basteln. Die Infobox soll TruetypeText im Header verwenden, also muss ich das irgendwie aufrufen, oder?
Ich habs so versucht, aber das geht so nicht. Wie muss ich das machen?
Code: Select all
function smarty_cms_function_infobox($params, &$smarty)
{
if(isset($params['width']) && isset($params['height']) && isset($params['title']) && isset($params['inhalt'])) {
$echostring = '<div style="width:100px; height:200px; background-color:#fef5fd; "><div style="width:100px;min-height:10px;background-color:e5e2eb;" >{cms_module module="TruetypeText" style="NoteboxMenupoints" text="hallowelt"}</div>hiersolldertexthin</div>';
return $echostring;
}else {
return;
}
}
function smarty_cms_help_function_infobox() {
echo lang('help_function_infobox');
}
function smarty_cms_about_function_infobox() {
}
leerraum