You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
418 B

<?php
$nomeTpl = "complementoMenu.htm";
$idMenu = $_FORMS["idMenu"];
$menuNome = $_FORMS["menuNome"];
$cssBlock = '<style type="text/css">
.menuComp
{
font-size: 14px;
}
.menuComp li
{
padding-bottom: 3px;
}
</style>
';
$link = GetLinksFromLink($dbcon, $idMenu);
$smarty->assign('menuNome', $menuNome);
$smarty->assign('links', $link);
GetTemplate($smarty, $nomeTpl)
?>