Improvement of standard themes. 2 small gif files added. Shown upper right.
[fa-stable.git] / themes / aqua / renderer.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12         class renderer
13         {
14                 function get_icon($category)
15                 {
16                         global  $path_to_root, $SysPrefs;
17
18                         if ($SysPrefs->show_menu_category_icons)
19                                 $img = $category == '' ? 'right.gif' : $category.'.png';
20                         else    
21                                 $img = 'right.gif';
22                         return "<img src='$path_to_root/themes/".user_theme()."/images/$img' style='vertical-align:middle;' border='0'>&nbsp;&nbsp;";
23                 }
24
25                 function wa_header()
26                 {
27                         page(_($help_context = "Main Menu"), false, true);
28                 }
29
30                 function wa_footer()
31                 {
32                         end_page(false, true);
33                 }
34
35                 function menu_header($title, $no_menu, $is_index)
36                 {
37                         global $path_to_root, $SysPrefs, $db_connections;
38                         echo "<table class='callout_main' border='0' cellpadding='0' cellspacing='0'>\n";
39                         echo "<tr>\n";
40                         echo "<td colspan='2' rowspan='2'>\n";
41
42                         echo "<table class='main_page' border='0' cellpadding='0' cellspacing='0'>\n";
43                         echo "<tr>\n";
44                         echo "<td>\n";
45                         echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
46                         echo "<tr>\n";
47                         echo "<td class='quick_menu'>\n"; // tabs
48
49                         $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
50                         if (!$no_menu)
51                         {
52                                 $applications = $_SESSION['App']->applications;
53                                 $local_path_to_root = $path_to_root;
54                                 $sel_app = $_SESSION['sel_app'];
55                                 echo "<table cellpadding='0' cellspacing='0' width='100%'><tr><td>";
56                                 echo "<div class='tabs'>";
57                                 foreach($applications as $app)
58                                 {
59                     if ($_SESSION["wa_current_user"]->check_application_access($app))
60                     {
61                         $acc = access_string($app->name);
62                         echo "<a class='".($sel_app == $app->id ? 'selected' : 'menu_tab')
63                             ."' href='$local_path_to_root/index.php?application=".$app->id
64                             ."'$acc[1]>" .$acc[0] . "</a>";
65                     }
66                                 }
67                                 echo "</div>";
68                                 echo "</td></tr></table>";
69                                 // top status bar
70                                 $pimg = "<img src='$local_path_to_root/themes/".user_theme()."/images/preferences.gif' width='14' height='14' border='0' alt='"._('Preferences')."'>&nbsp;&nbsp;";
71                                 $limg = "<img src='$local_path_to_root/themes/".user_theme()."/images/lock.gif' width='14' height='14' border='0' alt='"._('Change Password')."'>&nbsp;&nbsp;";
72                                 $img = "<img src='$local_path_to_root/themes/".user_theme()."/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'>&nbsp;&nbsp;";
73                                 $himg = "<img src='$local_path_to_root/themes/".user_theme()."/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'>&nbsp;&nbsp;";
74
75                                 echo "<table class='logoutBar'>";
76                                 echo "<tr><td class='headingtext3'>" . $db_connections[user_company()]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
77                                 echo "<td class='logoutBarRight'><img id='ajaxmark' src='$indicator' align='center' style='visibility:hidden;' alt='ajaxmark'></td>";
78                                 echo "  <td class='logoutBarRight'><a class='shortcut' href='$path_to_root/admin/display_prefs.php?'>$pimg" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
79                                 echo "  <a class='shortcut' href='$path_to_root/admin/change_current_user_password.php?selected_id=" . $_SESSION["wa_current_user"]->username . "'>$limg" . _("Change password") . "</a>&nbsp;&nbsp;&nbsp;\n";
80
81                                 if ($SysPrefs->help_base_url != null)
82                                 {
83                                         echo "<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url()."'>$himg" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
84                                 }
85                                 echo "<a class='shortcut' href='$local_path_to_root/access/logout.php?'>$img" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
86                                 echo "</td></tr></table>";
87                         }
88                         echo "</td></tr></table>";
89                         if ($no_menu)
90                         {
91                                 echo "<center><table class='tablestyle_noborder'>"
92                                         ."<tr><td><img id='ajaxmark' src='$indicator' align='center' style='visibility:hidden;' alt='ajaxmark'></td></tr>"
93                                         ."</table></center>";
94                         } elseif ($title && !$is_index)
95                         {
96                                 echo "<center><table id='title'><tr><td width='100%' class='titletext'>$title</td>"
97                                 ."<td align=right>"
98                                 .(user_hints() ? "<span id='hints'></span>" : '')
99                                 ."</td>"
100                                 ."</tr></table></center>";
101                         }
102                 }
103
104                 function menu_footer($no_menu, $is_index)
105                 {
106                         global $version, $path_to_root, $Pagehelp, $Ajax, $SysPrefs;
107
108                         include_once($path_to_root . "/includes/date_functions.inc");
109
110                         echo "</td></tr></table>\n"; // 'main_page'
111                         if ($no_menu == false) // bottom status line
112                         {
113                                 if ($is_index)
114                                         echo "<table class='bottomBar'>\n";
115                                 else
116                                         echo "<table class='bottomBar2'>\n";
117                                 echo "<tr>";
118                                 if (isset($_SESSION['wa_current_user'])) {
119                                         $phelp = implode('; ', $Pagehelp);
120                                         echo "<td class='bottomBarCell'>" . Today() . " | " . Now() . "</td>\n";
121                                         $Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
122                                         echo "<td id='hotkeyshelp'>".$phelp."</td>";
123                                 }
124                                 echo "</tr></table>\n";
125                         }
126                         echo "</td></tr> </table>\n"; // 'callout_main'
127                         if ($no_menu == false)
128                         {
129                                 echo "<table align='center' id='footer'>\n";
130                                 echo "<tr>\n";
131                                 echo "<td align='center' class='footer'><a target='_blank' href='".$SysPrefs->power_url."'><font color='#ffffff'>"
132                                         .$SysPrefs->app_title." $version - " . _("Theme:") . " " . user_theme() . " - ".show_users_online()."</font></a></td>\n";
133                                 echo "</tr>\n";
134                                 echo "<tr>\n";
135                                 echo "<td align='center' class='footer'><a target='_blank' href='".$SysPrefs->power_url."'><font color='#ffff00'>"
136                                         .$SysPrefs->power_by."</font></a></td>\n";
137                                 echo "</tr>\n";
138                                 if ($SysPrefs->allow_demo_mode)
139                                 {
140                                         echo "<tr>\n";
141                                         //echo "<td><br><div align='center'><a href='http://sourceforge.net'><img src='http://sourceforge.net/sflogo.php?group_id=89967&amp;type=5' alt='SourceForge.net Logo' width='210' height='62' border='0' align='center' /></a></div></td>\n";
142                                         echo "</tr>\n";
143                                 }
144                                 echo "</table><br><br>\n";
145                         }
146                 }
147
148                 function display_applications(&$waapp)
149                 {
150                         global $path_to_root;
151
152                         $selected_app = $waapp->get_selected_application();
153                         if (!$_SESSION["wa_current_user"]->check_application_access($selected_app))
154                                 return;
155
156                         if (method_exists($selected_app, 'render_index'))
157                         {
158                                 $selected_app->render_index();
159                                 return;
160                         }
161
162                         echo "<table width='100%' cellpadding='0' cellspacing='0'>";
163                         foreach ($selected_app->modules as $module)
164                         {
165                         if (!$_SESSION["wa_current_user"]->check_module_access($module))
166                                 continue;
167                                 // image
168                                 echo "<tr>";
169                                 // values
170                                 echo "<td valign='top' class='menu_group'>";
171                                 echo "<table border=0 width='100%'>";
172                                 echo "<tr><td class='menu_group'>";
173                                 echo $module->name;
174                                 echo "</td></tr><tr>";
175                                 echo "<td class='menu_group_items'>";
176
177                                 foreach ($module->lappfunctions as $appfunction)
178                                 {
179                                         $img = $this->get_icon($appfunction->category);
180                                         if ($appfunction->label == "")
181                                                 echo "&nbsp;<br>";
182                                         elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
183                                         {
184                                                         echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
185                                         }
186                                         elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
187                                         {
188                                                         echo $img.'<span class="inactive">'
189                                                                 .access_string($appfunction->label, true)
190                                                                 ."</span><br>\n";
191                                         }
192                                 }
193                                 echo "</td>";
194                                 if (sizeof($module->rappfunctions) > 0)
195                                 {
196                                         echo "<td width='50%' class='menu_group_items'>";
197                                         foreach ($module->rappfunctions as $appfunction)
198                                         {
199                                                 $img = $this->get_icon($appfunction->category);
200                                                 if ($appfunction->label == "")
201                                                         echo "&nbsp;<br>";
202                                                 elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
203                                                 {
204                                                                 echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
205                                                 }
206                                                 elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
207                                                 {
208                                                                 echo $img.'<span class="inactive">'
209                                                                         .access_string($appfunction->label, true)
210                                                                         ."</span><br>\n";
211                                                 }
212                                         }
213                                         echo "</td>";
214                                 }
215
216                                 echo "</tr></table></td></tr>";
217                         }
218                         echo "</table>";
219                 }
220         }