Better color in data picker
[fa-stable.git] / themes / aqua / renderer.php
index 686479810d02fdde93c650bff84ee79f432edaad..48fd487ae32fe490aa802b1ee8ba7c80b74797c3 100644 (file)
@@ -1,13 +1,13 @@
 <?php
 /**********************************************************************
     Copyright (C) FrontAccounting, LLC.
-       Released under the terms of the GNU Affero General Public License,
-       AGPL, as published by the Free Software Foundation, either version 
-       of the License, or (at your option) any later version.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
-    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
 ***********************************************************************/
        class renderer
        {
@@ -23,7 +23,7 @@
 
                function menu_header($title, $no_menu, $is_index)
                {
-                       global $path_to_root, $applications, $help_base_url, $db_connections;
+                       global $path_to_root, $help_base_url, $db_connections;
                        // you can owerride the table styles from config.php here, if you want.
                        //global $table_style, $table_style2;
                        //$table_style  = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'";
                        echo "<td class='quick_menu'>\n";
                        if (!$no_menu)
                        {
+                               $applications = $_SESSION['App']->applications;
                                $local_path_to_root = $path_to_root;
                                $sel_app = $_SESSION['sel_app'];
                                echo "<table cellpadding=0 cellspacing=0 width='100%'><tr><td>";
                                echo "<div class=tabs>";
-                               foreach($applications as $app => $name)
+                               foreach($applications as $app)
                                {
-                                       $acc = access_string($name);
-                                       echo "<a ".($sel_app == $app ? "class='selected' " : "").
-                                       "href='$local_path_to_root/index.php?application=".$app.
+                                       $acc = access_string($app->name);
+                                       echo "<a ".($sel_app == $app->id ? "class='selected' " : "").
+                                       "href='$local_path_to_root/index.php?application=".$app->id.
                                                SID ."'$acc[1]>" .$acc[0] . "</a>";
                                }
                                echo "</div>";