mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-19 03:41:32 +01:00
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>
|