950cd6a4ee86f8f63fe34ff08fd27ad4c999ebc7
[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         class renderer
13         {
14                 /* Uncomment this member if you want to use the category icons defined in /applications/applications.php
15                 function get_icon($category)
16                 {
17                         global  $path_to_root;
18
19                         $img = $category == '' ? 'right.gif' : $category.'.png';
20                         return "<img src='$path_to_root/themes/cool/images/$img' style='vertical-align:middle;' border='0'>&nbsp;&nbsp;";
21                 }
22                 */
23
24                 function wa_header()
25                 {
26 //                      add_js_ufile("themes/default/renderer.js");
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, $help_base_url, $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";
48                         if (!$no_menu)
49                         {
50                                 $applications = $_SESSION['App']->applications;
51                                 $local_path_to_root = $path_to_root;
52                                 $img = "<img src='$local_path_to_root/themes/default/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'>&nbsp;&nbsp;";
53                                 $himg = "<img src='$local_path_to_root/themes/default/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'>&nbsp;&nbsp;";
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                                         $acc = access_string($app->name);
60                                         echo "<a class='".($sel_app == $app->id ? 'selected' : 'menu_tab')
61                                                 ."' href='$local_path_to_root/index.php?application=".$app->id
62                                                 ."'$acc[1]>" .$acc[0] . "</a>";
63                                 }
64                                 echo "</div>";
65                                 echo "</td></tr></table>";
66
67                                 echo "<table class=logoutBar>";
68                                 echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
69                                 $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
70                                 echo "<td class='logoutBarRight'><img id='ajaxmark' src='$indicator' align='center' style='visibility:hidden;'></td>";
71                                 echo "  <td class='logoutBarRight'><a class='shortcut' href='$path_to_root/admin/display_prefs.php?'>" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
72                                 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";
73
74                                 if ($help_base_url != null)
75                                 {
76                                         echo "$himg<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url()."'>" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
77                                 }
78                                 echo "$img<a class='shortcut' href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
79                                 echo "</td></tr><tr><td colspan=3>";
80                                 echo "</td></tr></table>";
81                         }
82                         echo "</td></tr></table>";
83
84                         if ($no_menu)
85                                 echo "<br>";
86                         elseif ($title && !$is_index)
87                         {
88                                 echo "<center><table id='title'><tr><td width='100%' class='titletext'>$title</td>"
89                                 ."<td align=right>"
90                                 .(user_hints() ? "<span id='hints'></span>" : '')
91                                 ."</td>"
92                                 ."</tr></table></center>";
93                         }
94                 }
95
96                 function menu_footer($no_menu, $is_index)
97                 {
98                         global $version, $allow_demo_mode, $app_title, $power_url, 
99                                 $power_by, $path_to_root, $Pagehelp, $Ajax;
100                         include_once($path_to_root . "/includes/date_functions.inc");
101
102                         if ($no_menu == false)
103                         {
104                                 if ($is_index)
105                                         echo "<table class=bottomBar>\n";
106                                 else
107                                         echo "<table class=bottomBar2>\n";
108                                 echo "<tr>";
109                                 if (isset($_SESSION['wa_current_user'])) {
110                                         $phelp = implode('; ', $Pagehelp);
111                                         echo "<td class=bottomBarCell>" . Today() . " | " . Now() . "</td>\n";
112                                         $Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
113                                         echo "<td id='hotkeyshelp'>".$phelp."</td>";
114                                 }
115                                 echo "</tr></table>\n";
116                         }
117                         echo "</td></tr></table></td>\n";
118                         echo "</table>\n";
119                         if ($no_menu == false)
120                         {
121                                 echo "<table align='center' id='footer'>\n";
122                                 echo "<tr>\n";
123                                 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";
124                                 echo "</tr>\n";
125                                 echo "<tr>\n";
126                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url' tabindex='-1'><font color='#ffff00'>$power_by</font></a></td>\n";
127                                 echo "</tr>\n";
128                                 if ($allow_demo_mode==true)
129                                 {
130                                         echo "<tr>\n";
131                                         //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";
132                                         echo "</tr>\n";
133                                 }
134                                 echo "</table><br><br>\n";
135                         }
136                 }
137
138                 function display_applications(&$waapp)
139                 {
140                         global $path_to_root;
141
142                         $selected_app = $waapp->get_selected_application();
143
144                         $img = "<img src='$path_to_root/themes/default/images/right.gif' style='vertical-align:middle;' width='17' height='17' border='0'>&nbsp;&nbsp;";
145                         foreach ($selected_app->modules as $module)
146                         {
147                                 // image
148                                 echo "<tr>";
149                                 // values
150                                 echo "<td valign='top' class='menu_group'>";
151                                 echo "<table border=0 width='100%'>";
152                                 echo "<tr><td class='menu_group'>";
153                                 echo $module->name;
154                                 echo "</td></tr><tr>";
155                                 echo "<td class='menu_group_items'>";
156
157                                 foreach ($module->lappfunctions as $appfunction)
158                                 {
159                                         if ($appfunction->label == "")
160                                                 echo "&nbsp;<br>";
161                                         elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
162                                         {
163                                                         echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
164                                         }
165                                         else 
166                                         {
167                                                         echo $img.'<span class="inactive">'
168                                                                 .access_string($appfunction->label, true)
169                                                                 ."</span><br>\n";
170                                         }
171                                 }
172                                 echo "</td>";
173                                 if (sizeof($module->rappfunctions) > 0)
174                                 {
175                                         echo "<td width='50%' class='menu_group_items'>";
176                                         foreach ($module->rappfunctions as $appfunction)
177                                         {
178                                                 if ($appfunction->label == "")
179                                                         echo "&nbsp;<br>";
180                                                 elseif ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
181                                                 {
182                                                                 echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
183                                                 }
184                                                 else 
185                                                 {
186                                                                 echo $img.'<span class="inactive">'
187                                                                         .access_string($appfunction->label, true)
188                                                                         ."</span><br>\n";
189                                                 }
190                                         }
191                                         echo "</td>";
192                                 }
193
194                                 echo "</tr></table></td></tr>";
195                         }
196
197                         echo "</table>";
198                 }
199         }
200
201 ?>