Fixed many issues in output HTML code according to HTML 4.01 Transitional format.
[fa-stable.git] / themes / default / 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
13         class renderer
14         {
15                 function get_icon($category)
16                 {
17                         global  $path_to_root, $show_menu_category_icons;
18
19                         if ($show_menu_category_icons)
20                                 $img = $category == '' ? 'right.gif' : $category.'.png';
21                         else    
22                                 $img = 'right.gif';
23                         return "<img src='$path_to_root/themes/default/images/$img' style='vertical-align:middle;' border='0' ".basename($img).">&nbsp;&nbsp;";
24                 }
25
26                 function wa_header()
27                 {
28                         page(_($help_context = "Main Menu"), false, true);
29                 }
30
31                 function wa_footer()
32                 {
33                         end_page(false, true);
34                 }
35
36                 function menu_header($title, $no_menu, $is_index)
37                 {
38                         global $path_to_root, $help_base_url, $db_connections;
39                         echo "<table class='callout_main' border='0' cellpadding='0' cellspacing='0'>\n";
40                         echo "<tr>\n";
41                         echo "<td colspan='2' rowspan='2'>\n";
42
43                         echo "<table class='main_page' border='0' cellpadding='0' cellspacing='0'>\n";
44                         echo "<tr>\n";
45                         echo "<td>\n";
46                         echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
47                         echo "<tr>\n";
48                         echo "<td class='quick_menu'>\n"; // tabs
49                         if (!$no_menu)
50                         {
51                                 $applications = $_SESSION['App']->applications;
52                                 $local_path_to_root = $path_to_root;
53                                 $sel_app = $_SESSION['sel_app'];
54                                 echo "<table cellpadding='0' cellspacing='0' width='100%'><tr><td>";
55                                 echo "<div class='tabs'>";
56                                 foreach($applications as $app)
57                                 {
58                     if ($_SESSION["wa_current_user"]->check_application_access($app))
59                     {
60                         $acc = access_string($app->name);
61                         echo "<a class='".($sel_app == $app->id ? 'selected' : 'menu_tab')
62                             ."' href='$local_path_to_root/index.php?application=".$app->id
63                             ."'$acc[1]>" .$acc[0] . "</a>";
64                     }
65                                 }
66                                 echo "</div>";
67                                 echo "</td></tr></table>";
68
69                                 // top status bar
70                                 $img = "<img src='$local_path_to_root/themes/default/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'>&nbsp;&nbsp;";
71                                 $himg = "<img src='$local_path_to_root/themes/default/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'>&nbsp;&nbsp;";
72                                 echo "<table class='logoutBar'>";
73                                 echo "<tr><td class='headingtext3'>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
74                                 $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
75                                 echo "<td class='logoutBarRight'><img id='ajaxmark' src='$indicator' align='middle' style='visibility:hidden;' alt='ajaxmark'></td>";
76                                 echo "  <td class='logoutBarRight'><a class='shortcut' href='$path_to_root/admin/display_prefs.php?'>" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
77                                 echo "  <a class='shortcut' href='$path_to_root/admin/change_current_user_password.php?selected_id=" . $_SESSION["wa_current_user"]->username . "'>" . _("Change password") . "</a>&nbsp;&nbsp;&nbsp;\n";
78
79                                 if ($help_base_url != null)
80                                 {
81                                         echo "$himg<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url()."'>" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
82                                 }
83                                 echo "$img<a class='shortcut' href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
84                                 echo "</td></tr><tr><td colspan=3>";
85                                 echo "</td></tr></table>";
86                         }
87                         echo "</td></tr></table>";
88
89                         if ($no_menu)
90                                 echo "<br>";
91                         elseif ($title && !$is_index)
92                         {
93                                 echo "<center><table id='title'><tr><td width='100%' class='titletext'>$title</td>"
94                                 ."<td align=right>"
95                                 .(user_hints() ? "<span id='hints'></span>" : '')
96                                 ."</td>"
97                                 ."</tr></table></center>";
98                         }
99                 }
100
101                 function menu_footer($no_menu, $is_index)
102                 {
103                         global $version, $allow_demo_mode, $app_title, $power_url, 
104                                 $power_by, $path_to_root, $Pagehelp, $Ajax;
105                         include_once($path_to_root . "/includes/date_functions.inc");
106
107                         echo "</td></tr></table>\n"; // 'main_page'
108                         if ($no_menu == false) // bottom status line
109                         {
110                                 if ($is_index)
111                                         echo "<table class='bottomBar'>\n";
112                                 else
113                                         echo "<table class='bottomBar2'>\n";
114                                 echo "<tr>";
115                                 if (isset($_SESSION['wa_current_user'])) {
116                                         $phelp = implode('; ', $Pagehelp);
117                                         echo "<td class='bottomBarCell'>" . Today() . " | " . Now() . "</td>\n";
118                                         $Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
119                                         echo "<td id='hotkeyshelp'>".$phelp."</td>";
120                                 }
121                                 echo "</tr></table>\n";
122                         }
123                         echo "</td></tr> </table>\n"; // 'callout_main'
124                         if ($no_menu == false)
125                         {
126                                 echo "<table align='center' id='footer'>\n";
127                                 echo "<tr>\n";
128                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url' tabindex='-1'><font color='#ffffff'>$app_title $version - " . _("Theme:") . " " . user_theme() . " - ".show_users_online()."</font></a></td>\n";
129                                 echo "</tr>\n";
130                                 echo "<tr>\n";
131                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url' tabindex='-1'><font color='#ffff00'>$power_by</font></a></td>\n";
132                                 echo "</tr>\n";
133                                 if ($allow_demo_mode==true)
134                                 {
135                                         echo "<tr>\n";
136                                         //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='middle' /></a></div></td>\n";
137                                         echo "</tr>\n";
138                                 }
139                                 echo "</table><br><br>\n";
140                         }
141                 }
142
143                 function display_applications(&$waapp)
144                 {
145                         global $path_to_root;
146
147                         $selected_app = $waapp->get_selected_application();
148                         if (!$_SESSION["wa_current_user"]->check_application_access($selected_app))
149                                 return;
150
151                         if (method_exists($selected_app, 'render_index'))
152                         {
153                                 $selected_app->render_index();
154                                 return;
155                         }
156
157                         echo "<table width='100%' cellpadding='0' cellspacing='0'>";
158                         foreach ($selected_app->modules as $module)
159                         {
160                         if (!$_SESSION["wa_current_user"]->check_module_access($module))
161                                 continue;
162                                 // image
163                                 echo "<tr>";
164                                 // values
165                                 echo "<td valign='top' class='menu_group'>";
166                                 echo "<table border=0 width='100%'>";
167                                 echo "<tr><td class='menu_group'>";
168                                 echo $module->name;
169                                 echo "</td></tr><tr>";
170                                 echo "<td class='menu_group_items'>";
171
172                                 foreach ($module->lappfunctions as $appfunction)
173                                 {
174                                         $img = $this->get_icon($appfunction->category);
175                                         if ($appfunction->label == "")
176                                                 echo "&nbsp;<br>";
177                                         elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
178                                         {
179                                                         echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
180                                         }
181                                         elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
182                                         {
183                                                         echo $img.'<span class="inactive">'
184                                                                 .access_string($appfunction->label, true)
185                                                                 ."</span><br>\n";
186                                         }
187                                 }
188                                 echo "</td>";
189                                 if (sizeof($module->rappfunctions) > 0)
190                                 {
191                                         echo "<td width='50%' class='menu_group_items'>";
192                                         foreach ($module->rappfunctions as $appfunction)
193                                         {
194                                                 $img = $this->get_icon($appfunction->category);
195                                                 if ($appfunction->label == "")
196                                                         echo "&nbsp;<br>";
197                                                 elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
198                                                 {
199                                                                 echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
200                                                 }
201                                                 elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
202                                                 {
203                                                                 echo $img.'<span class="inactive">'
204                                                                         .access_string($appfunction->label, true)
205                                                                         ."</span><br>\n";
206                                                 }
207                                         }
208                                         echo "</td>";
209                                 }
210
211                                 echo "</tr></table></td></tr>";
212                         }
213                         echo "</table>";
214         }
215 }
216 ?>