Unaccesable menu options are now displayed in grey.
[fa-stable.git] / themes / default / renderer.php
index 6c4db65cde8062540e34a318497e06275f4bb00e..12c6ef654c27c40f2d7443c1345469ab4c84da62 100644 (file)
                                        echo "$himg<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url($title, $sel_app)."'>" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
                                }
                                echo "$img<a href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
+                               echo "</td></tr><tr><td colspan=3>";
                                echo "</td></tr></table>";
                        }
                        echo "</td></tr></table>";
 
-                       if ($title && !$no_menu && !$is_index)
+                       if ($no_menu)
+                               echo "<br>";
+                       elseif ($title && !$is_index)
                        {
-                               echo "<center><table width='100%'><tr><td width='100%' class='titletext'>$title</td>"
+                               echo "<center><table id='title'><tr><td width='100%' class='titletext'>$title</td>"
                                ."<td align=right>"
                                .(user_hints() ? "<span id='hints'></span>" : '')
                                ."</td>"
                                ."</tr></table></center>";
                        }
-
-                       if (!$is_index)
-                               echo "<br>";
-
                }
 
                function menu_footer($no_menu, $is_index)
                {
-                       global $version, $allow_demo_mode, $app_title, $power_url, $power_by, $path_to_root;
+                       global $version, $allow_demo_mode, $app_title, $power_url, 
+                               $power_by, $path_to_root, $Pagehelp, $Ajax;
                        include_once($path_to_root . "/includes/date_functions.inc");
 
                        if ($no_menu == false)
                                else
                                        echo "<table class=bottomBar2>\n";
                                echo "<tr>";
-                               if (isset($_SESSION['wa_current_user']))
+                               if (isset($_SESSION['wa_current_user'])) {
+                                       $phelp = implode('; ', $Pagehelp);
                                        echo "<td class=bottomBarCell>" . Today() . " | " . Now() . "</td>\n";
+                                       $Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
+                                       echo "<td id='hotkeyshelp'>".$phelp."</td>";
+                               }
                                echo "</tr></table>\n";
                        }
                        echo "</td></tr></table></td>\n";
 
                                foreach ($module->lappfunctions as $appfunction)
                                {
-                                       if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
+                                       if ($appfunction->label == "")
+                                               echo "&nbsp;<br>";
+                                       elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
                                        {
-                                               if ($appfunction->label == "")
-                                                       echo "&nbsp;<br>";
-                                               else
                                                        echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
                                        }
+                                       else 
+                                       {
+                                                       echo $img.'<span class="inactive">'
+                                                               .access_string($appfunction->label, true)
+                                                               ."</span><br>\n";
+                                       }
                                }
                                echo "</td>";
                                if (sizeof($module->rappfunctions) > 0)
                                        echo "<td width='50%' class='menu_group_items'>";
                                        foreach ($module->rappfunctions as $appfunction)
                                        {
-                                               if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
+                                               if ($appfunction->label == "")
+                                                       echo "&nbsp;<br>";
+                                               elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
                                                {
-                                                       if ($appfunction->label == "")
-                                                               echo "&nbsp;<br>";
-                                                       else
                                                                echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
                                                }
+                                               else 
+                                               {
+                                                               echo $img.'<span class="inactive">'
+                                                                       .access_string($appfunction->label, true)
+                                                                       ."</span><br>\n";
+                                               }
                                        }
                                        echo "</td>";
                                }