egroupware/phpgwapi/templates/idots/topmenu.tpl.php
Pim Snel 60b9285d71 add topmenu to the egw framework
implement topmenu in idots template set
add idots preference to enable topmenu
add idots preference to disable general sidebox menu
some cleanups in idots framework class
some cleanups in egw_framework
2007-01-05 14:06:34 +00:00

15 lines
552 B
PHP

<div id="topmenu">
<div id="topmenu_items">
<?php foreach($this->menuitems as $mitems):?>
<div style="padding:0px 10px 0px 10px;position:relative;float:left;"><img src="<?=$this->icon_or_star?>" />&nbsp;<a href="<?=$mitems['url']?>"><?=$mitems['label']?></a></div>
<?php endforeach?>
</div>
<div id="topmenu_info">
<?php foreach($this->menuinfoitems as $mitems):?>
<div style="padding:0px 10px 0px 10px;position:relative;float:left;"><?=$mitems?></div>
<?php endforeach?>
</div>
<div style="clear:both;"></div>
</div>