Moving 2.0 development version to main trunk.
[fa-stable.git] / themes / default / renderer.php
1 <?php
2
3         class renderer
4         {
5                 function wa_header()
6                 {
7                         page(_("Main Menu"), false, true);
8                 }
9
10                 function wa_footer()
11                 {
12                         end_page(false, true);
13                 }
14
15                 function menu_header($title, $no_menu, $is_index)
16                 {
17                         global $path_to_root, $applications, $help_base_url, $db_connections;
18                         // you can owerride the table styles from config.php here, if you want.
19                         //global $table_style, $table_style2;
20                         //$table_style  = "cellpadding=3 border=1 bordercolor='#8cacbb' style='border-collapse: collapse'";
21                         //$table_style2 = "cellpadding=3 border=1 bordercolor='#cccccc' style='border-collapse: collapse'";
22                         echo "<table class='callout_main' border='0' cellpadding='0' cellspacing='0'>\n";
23                         echo "<tr>\n";
24                         echo "<td colspan='2' rowspan='2'>\n";
25
26                         echo "<table class='main_page' border='0' cellpadding='0' cellspacing='0'>\n";
27                         echo "<tr>\n";
28                         echo "<td>\n";
29                         echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
30                         echo "<tr>\n";
31                         echo "<td class='quick_menu'>\n";
32                         if (!$no_menu)
33                         {
34                                 $local_path_to_root = $path_to_root;
35                                 $sel_app = $_SESSION['sel_app'];
36                                 echo "<table cellpadding=0 cellspacing=0 width='100%'><tr><td>";
37                                 echo "<div class=tabs>";
38                                 foreach($applications as $app => $name)
39                                 {
40                                         echo "<a ".($sel_app == $app ? "class='selected' " : "").
41                                         "href='$local_path_to_root/index.php?application=".$app.
42                                                 SID ."'>" .$name . "</a>";
43                                 }
44                                 echo "</div>";
45                                 echo "</td></tr></table>";
46
47                                 echo "<table class=logoutBar>";
48                                 echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
49
50                                 echo "  <td class='logoutBarRight'><a href='$path_to_root/admin/display_prefs.php?'>" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
51                                 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";
52
53                                 if ($help_base_url != null)
54                                 {
55                                         echo "<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url($title, $sel_app)."'>" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
56                                 }
57                                 echo "<a href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
58                                 echo "</td></tr></table>";
59                         }
60                         echo "</td></tr></table>";
61
62                         if ($title && !$no_menu && !$is_index)
63                         {
64                                 echo "<center><table width='100%'><tr><td width='100%' class='titletext'>$title</td>"
65                                 ."<td align=right>"
66                                 .(user_hints() ? "<span id='hints'></span>" : '')
67                                 ."</td>"
68                                 ."</tr></table></center>";
69                         }
70
71                         if (!$is_index)
72                                 echo "<br>";
73
74                 }
75
76                 function menu_footer($no_menu, $is_index)
77                 {
78                         global $version, $allow_demo_mode, $app_title, $power_url, $power_by, $path_to_root;
79                         include_once($path_to_root . "/includes/date_functions.inc");
80
81                         if ($no_menu == false)
82                         {
83                                 if ($is_index)
84                                         echo "<table class=bottomBar>\n";
85                                 else
86                                         echo "<table class=bottomBar2>\n";
87                                 echo "<tr>";
88                                 if (isset($_SESSION['wa_current_user']))
89                                         echo "<td class=bottomBarCell>" . Today() . " | " . Now() . "</td>\n";
90                                 echo "</tr></table>\n";
91                         }
92                         echo "</td></tr></table></td>\n";
93                         echo "</table>\n";
94                         if ($no_menu == false)
95                         {
96                                 echo "<table align='center' id='footer'>\n";
97                                 echo "<tr>\n";
98                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url' tabindex='-1'><font color='#ffffff'>$app_title $version - " . _("Theme:") . " " . user_theme() . "</font></a></td>\n";
99                                 echo "</tr>\n";
100                                 echo "<tr>\n";
101                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url' tabindex='-1'><font color='#ffff00'>$power_by</font></a></td>\n";
102                                 echo "</tr>\n";
103                                 if ($allow_demo_mode==true)
104                                 {
105                                         echo "<tr>\n";
106                                         //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";
107                                         echo "</tr>\n";
108                                 }
109                                 echo "</table><br><br>\n";
110                         }
111                 }
112
113                 function display_applications(&$waapp)
114                 {
115
116                         $selected_app = $waapp->get_selected_application();
117
118                         foreach ($selected_app->modules as $module)
119                         {
120                                 // image
121                                 echo "<tr>";
122                                 // values
123                                 echo "<td valign='top' class='menu_group'>";
124                                 echo "<table border=0 width='100%'>";
125                                 echo "<tr><td class='menu_group'>";
126                                 echo $module->name;
127                                 echo "</td></tr><tr>";
128                                 echo "<td class='menu_group_items'>";
129
130                                 foreach ($module->lappfunctions as $appfunction)
131                                 {
132                                         if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))
133                                                 echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
134                                 }
135                                 echo "</td>";
136                                 if (sizeof($module->rappfunctions) > 0)
137                                 {
138                                         echo "<td width='50%' class='menu_group_items'>";
139                                         foreach ($module->rappfunctions as $appfunction)
140                                         {
141                                                 if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))
142                                                         echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
143                                         }
144                                         echo "</td>";
145                                 }
146
147                                 echo "</tr></table></td></tr>";
148                         }
149
150                         echo "</table>";
151                 }
152         }
153
154 ?>