mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-05 04:26:30 +02:00
bugfix hauptmenu
This commit is contained in:
parent
3f7a031bd7
commit
f1c0a10017
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* *** COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
|
||||
*
|
||||
@ -13,28 +14,24 @@
|
||||
*/
|
||||
?>
|
||||
<?php
|
||||
|
||||
class Hauptmenu {
|
||||
|
||||
var $app;
|
||||
|
||||
function __construct(&$app) {
|
||||
//parent::GenHauptmenu($app);
|
||||
$this->app = &$app;
|
||||
|
||||
|
||||
$this->app->ActionHandlerInit($this);
|
||||
|
||||
$this->app->ActionHandler("list", "HauptmenuList");
|
||||
|
||||
|
||||
$this->app->ActionHandlerListen($app);
|
||||
$this->app->Tpl->Set('UEBERSCHRIFT', "Hauptmenü");
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function HauptmenuList()
|
||||
{
|
||||
function HauptmenuList() {
|
||||
|
||||
//this->WFconf[menu][mitarbeiter]
|
||||
$menu = $this->app->Conf->WFconf['menu'][$this->app->User->GetType()];
|
||||
@ -43,6 +40,9 @@ class Hauptmenu {
|
||||
$spalten_anzahl = 5;
|
||||
|
||||
$i = 0;
|
||||
|
||||
if (!is_null($menu)) {
|
||||
|
||||
if (count($menu) > 0) {
|
||||
foreach ($menu as $key => $value) {
|
||||
$i++;
|
||||
@ -70,27 +70,20 @@ class Hauptmenu {
|
||||
$this->app->Tpl->Parse('PAGE', 'secnav.tpl');
|
||||
}
|
||||
$this->app->Tpl->Add('PAGE', "</td>");
|
||||
if($spalten % $spalten_anzahl == 0)
|
||||
{
|
||||
if ($spalten % $spalten_anzahl == 0) {
|
||||
$this->app->Tpl->Add('PAGE', "</tr><tr valign=\"top\">");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
$restliche_td = $spalten % $spalten_anzahl;
|
||||
|
||||
for ($i = 0; $i < $restliche_td; $i++)
|
||||
$this->app->Tpl->Add('PAGE', "<td></td>");
|
||||
$this->app->Tpl->Add('PAGE', "</tr></table>");
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user