Copyright notes at top op every source file
[fa-stable.git] / themes / default / renderer.php
index 51cbc8e441bfe26bc1eb9c720ebd1006135358ae..21c263fb250b52468723a53b344760ad7e879310 100644 (file)
@@ -1,5 +1,14 @@
 <?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 
+       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>.
+***********************************************************************/
        class renderer
        {
                function wa_header()
                                echo "<div class=tabs>";
                                foreach($applications as $app => $name)
                                {
+                                       $acc = access_string($name);
                                        echo "<a ".($sel_app == $app ? "class='selected' " : "").
                                        "href='$local_path_to_root/index.php?application=".$app.
-                                               SID ."'>" .$name . "</a>";
+                                               SID ."'$acc[1]>" .$acc[0] . "</a>";
                                }
                                echo "</div>";
                                echo "</td></tr></table>";
 
                                echo "<table class=logoutBar>";
                                echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
-
+                               $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
+                               echo "<td class='logoutBarRight'><img id='ajaxmark' src='$indicator' align='center' style='visibility:hidden;'></td>";
                                echo "  <td class='logoutBarRight'><a href='$path_to_root/admin/display_prefs.php?'>" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
                                echo "  <a href='$path_to_root/admin/change_current_user_password.php?selected_id=" . $_SESSION["wa_current_user"]->username . "'>" . _("Change password") . "</a>&nbsp;&nbsp;&nbsp;\n";
 
 
                                foreach ($module->lappfunctions as $appfunction)
                                {
-                                       if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))
-                                               echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
+                                       if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
+                                       {
+                                               $lnk = access_string($appfunction->label);
+                                               echo "<a href='$appfunction->link'$lnk[1]>$lnk[0]</a><br>";
+                                       }
                                }
                                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))
-                                                       echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
+                                               if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
+                                               {
+                                                       $lnk = access_string($appfunction->label);
+                                                       echo "<a href='$appfunction->link'$lnk[1]>$lnk[0]</a><br>";
+                                               }
                                        }
                                        echo "</td>";
                                }