2d85a4e2f90551a29e0ebf7b3a90f26fce5ea616
[fa-stable.git] / themes / cool / 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                                         $acc = access_string($name);
41                                         echo "<a ".($sel_app == $app ? "class='selected' " : "").
42                                         "href='$local_path_to_root/index.php?application=".$app.
43                                                 SID ."'$acc[1]>" .$acc[0] . "</a>";
44                                 }
45                                 echo "</div>";
46
47                                 echo "</td></tr></table>";
48
49                                 echo "<table class=logoutBar>";
50                                 echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
51                                 $indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
52                                 echo "<td class='logoutBarRight'><img id='ajaxmark' src='$indicator' align='center' style='visibility:hidden;'></td>";
53                                 echo "  <td class='logoutBarRight'><a href='$path_to_root/admin/display_prefs.php?'>" . _("Preferences") . "</a>&nbsp;&nbsp;&nbsp;\n";
54                                 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";
55
56                                 if ($help_base_url != null)
57                                 {
58                                         echo "<a target = '_blank' onclick=" .'"'."javascript:openWindow(this.href,this.target); return false;".'" '. "href='". help_url($title, $sel_app)."'>" . _("Help") . "</a>&nbsp;&nbsp;&nbsp;";
59                                 }
60                                 echo "<a href='$local_path_to_root/access/logout.php?'>" . _("Logout") . "</a>&nbsp;&nbsp;&nbsp;";
61                                 echo "</td></tr></table>";
62                         }
63                         echo "</td></tr></table>";
64
65                         if ($title && !$no_menu && !$is_index)
66                         {
67                                 echo "<center><table width='100%'><tr><td width='100%' class='titletext'>$title</td>"
68                                 ."<td align=right>"
69                                 .(user_hints() ? "<span id='hints'></span>" : '')
70                                 ."</td>"
71                                 ."</tr></table></center>";
72                         }
73
74                         if (!$is_index)
75                                 echo "<br>";
76
77                 }
78
79                 function menu_footer($no_menu, $is_index)
80                 {
81                         global $version, $allow_demo_mode, $app_title, $power_url, $power_by, $path_to_root;
82                         include_once($path_to_root . "/includes/date_functions.inc");
83
84                         if ($no_menu == false)
85                         {
86                                 if ($is_index)
87                                         echo "<table class=bottomBar>\n";
88                                 else
89                                         echo "<table class=bottomBar2>\n";
90                                 echo "<tr>";
91                                 if (isset($_SESSION['wa_current_user']))
92                                         echo "<td class=bottomBarCell>" . Today() . " | " . Now() . "</td>\n";
93                                 echo "</tr></table>\n";
94                         }
95                         echo "</td></tr></table></td>\n";
96                         echo "</table>\n";
97                         if ($no_menu == false)
98                         {
99                                 echo "<table align='center' id='footer'>\n";
100                                 echo "<tr>\n";
101                                 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";
102                                 echo "</tr>\n";
103                                 echo "<tr>\n";
104                                 echo "<td align='center' class='footer'><a target='_blank' href='$power_url'><font color='#ffff00'>$power_by</font></a></td>\n";
105                                 echo "</tr>\n";
106                                 if ($allow_demo_mode==true)
107                                 {
108                                         echo "<tr>\n";
109                                         //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";
110                                         echo "</tr>\n";
111                                 }
112                                 echo "</table><br><br>\n";
113                         }
114                 }
115
116                 function display_applications(&$waapp)
117                 {
118
119                         $selected_app = $waapp->get_selected_application();
120
121                         foreach ($selected_app->modules as $module)
122                         {
123                                 // image
124                                 echo "<tr>";
125                                 // values
126                                 echo "<td valign='top' class='menu_group'>";
127                                 echo "<table border=0 width='100%'>";
128                                 echo "<tr><td class='menu_group'>";
129                                 echo $module->name;
130                                 echo "</td></tr><tr>";
131                                 echo "<td class='menu_group_items'>";
132
133                                 foreach ($module->lappfunctions as $appfunction)
134                                 {
135                                         if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
136                                         {
137                                                 $lnk = access_string($appfunction->label);
138                                                 echo "<a href='$appfunction->link'$lnk[1]>$lnk[0]</a><br>";
139                                         }
140                                 }
141                                 echo "</td>";
142                                 if (sizeof($module->rappfunctions) > 0)
143                                 {
144                                         echo "<td width='50%' class='menu_group_items'>";
145                                         foreach ($module->rappfunctions as $appfunction)
146                                         {
147                                                 if ($_SESSION["wa_current_user"]->can_access_page($appfunction->access)) 
148                                                 {
149                                                         $lnk = access_string($appfunction->label);
150                                                         echo "<a href='$appfunction->link'$lnk[1]>$lnk[0]</a><br>";
151                                                 }
152                                         }
153                                         echo "</td>";
154                                 }
155
156                                 echo "</tr></table></td></tr>";
157                         }
158
159                         echo "</table>";
160                 }
161         }
162
163 ?>