mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
60b9285d71
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
15 lines
552 B
PHP
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?>" /> <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>
|