924c82e2208aeeb154ab9b5a58455adf9e8b6b3f
[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
46                                 echo "</td></tr></table>";
47
48                                 echo "<table class=logoutBar>";
49                                 echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
50                                 if ($help_base_url != null)
51                                 {
52                                         echo "<td align=right ><a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url($title, $sel_app)."'>" . _("Help") . "</a></td>";
53                                 }
54                                 echo "<td class=logoutBarRight><a href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>";
55                                 echo "</td></tr></table>";
56                         }
57                         echo "</td></tr></table>";
58
59                         if ($title && !$no_menu && !$is_index)
60                         {
61                                 echo "<center><table width='100%'><tr><td width='100%' class='titletext'>$title</td></tr></table></center>";
62                         }
63
64                         if (!$is_index)
65                                 echo "<br>";
66
67                 }
68
69                 function menu_footer($no_menu, $is_index)
70                 {
71                         global $version, $allow_demo_mode, $app_title, $power_url, $power_by, $path_to_root;
72                         include_once($path_to_root . "/includes/date_functions.inc");
73
74                         if ($no_menu == false)
75                         {
76                                 if ($is_index)
77                                         echo "<table class=bottomBar>\n";
78                                 else
79                                         echo "<table class=bottomBar2>\n";
80                                 echo "<tr>";
81                                 if (isset($_SESSION['wa_current_user']))
82                                         echo "<td class=bottomBarCell>" . Today() . " | " . Now() . "</td>\n";
83                                 echo "</tr></table>\n";
84                         }
85                         echo "</td></tr></table></td>\n";
86                         echo "</table>\n";
87                         if ($no_menu == false)
88                         {
89                                 echo "<table align='center' id='footer'>\n";
90                                 echo "<tr>\n";
91                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url'><font color='#ffffff'>$app_title $version - " . _("Theme:") . " " . user_theme() . "</font></a></td>\n";
92                                 echo "</tr>\n";
93                                 echo "<tr>\n";
94                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url'><font color='#ffff00'>$power_by</font></a></td>\n";
95                                 echo "</tr>\n";
96                                 if ($allow_demo_mode==true)
97                                 {
98                                         echo "<tr>\n";
99                                         //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";
100                                         echo "</tr>\n";
101                                 }
102                                 echo "</table><br><br>\n";
103                         }
104                 }
105
106                 function display_applications(&$waapp)
107                 {
108
109                         $selected_app = $waapp->get_selected_application();
110
111                         foreach ($selected_app->modules as $module)
112                         {
113                                 // image
114                                 echo "<tr>";
115                                 // values
116                                 echo "<td valign='top' class='menu_group'>";
117                                 echo "<table border=0 width='100%'>";
118                                 echo "<tr><td class='menu_group'>";
119                                 echo $module->name;
120                                 echo "</td></tr><tr>";
121                                 echo "<td class='menu_group_items'>";
122
123                                 foreach ($module->lappfunctions as $appfunction)
124                                 {
125                                         if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))
126                                                 echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
127                                 }
128                                 echo "</td>";
129                                 if (sizeof($module->rappfunctions) > 0)
130                                 {
131                                         echo "<td width='50%' class='menu_group_items'>";
132                                         foreach ($module->rappfunctions as $appfunction)
133                                         {
134                                                 if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access))
135                                                         echo "<a href='$appfunction->link'> " . $appfunction->label . "</a><br>";
136                                         }
137                                         echo "</td>";
138                                 }
139
140                                 echo "</tr></table></td></tr>";
141                         }
142
143                         echo "</table>";
144                 }
145         }
146
147 ?>