To activate, set $show_menu_category_icons = 1, in config.php
[fa-stable.git] / themes / aqua / renderer.php
index 12d31c47ddd686d1268a3179055b45d8e17a43ad..2734ad08f644bbb5efa908346c47f95f91648042 100644 (file)
 ***********************************************************************/
        class renderer
        {
-               /* Uncomment this member if you want to use the category icons defined in /applications/applications.php
                function get_icon($category)
                {
-                       global  $path_to_root;
-
-                       $img = $category == '' ? 'right.gif' : $category.'.png';
+                       global  $path_to_root, $show_menu_category_icons;
+;
+                       if ($show_menu_category_icons)
+                               $img = $category == '' ? 'right.gif' : $category.'.png';
+                       else    
+                               $img = 'right.gif';
                        return "<img src='$path_to_root/themes/cool/images/$img' style='vertical-align:middle;' border='0'>&nbsp;&nbsp;";
                }
-               */
 
                function wa_header()
                {
                        
                        $selected_app = $waapp->get_selected_application();
 
-                       $img = "<img src='$path_to_root/themes/aqua/images/right.gif' style='vertical-align:middle;' width='17' height='17' border='0'>&nbsp;&nbsp;";
                        foreach ($selected_app->modules as $module)
                        {
                                // image
 
                                foreach ($module->lappfunctions as $appfunction)
                                {
+                                       $img = $this->get_icon($appfunction->category);
                                        if ($appfunction->label == "")
                                                echo "&nbsp;<br>";
                                        elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
                                        echo "<td width='50%' class='menu_group_items'>";
                                        foreach ($module->rappfunctions as $appfunction)
                                        {
+                                               $img = $this->get_icon($appfunction->category);
                                                if ($appfunction->label == "")
                                                        echo "&nbsp;<br>";
                                                elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))