{
global $path_to_root, $help_base_url, $db_connections;
echo "<table class='callout_main' border='0' cellpadding='0' cellspacing='0'>\n";
- echo "<tr>\n";
+ echo "<tr>";
echo "<td colspan='2' rowspan='2'>\n";
echo "<table class='main_page' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<td>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
- echo "<td class='quick_menu'>\n";
+ echo "<td class='quick_menu'>\n"; // tabs
if (!$no_menu)
{
$applications = $_SESSION['App']->applications;
$local_path_to_root = $path_to_root;
- $img = "<img src='$local_path_to_root/themes/aqua/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
- $himg = "<img src='$local_path_to_root/themes/aqua/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
+
$sel_app = $_SESSION['sel_app'];
echo "<table cellpadding=0 cellspacing=0 width='100%'><tr><td>";
echo "<div class=tabs>";
echo "</div>";
echo "</td></tr></table>";
+ // top status bar
+ $img = "<img src='$local_path_to_root/themes/aqua/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
+ $himg = "<img src='$local_path_to_root/themes/aqua/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
echo "<table class=logoutBar>";
echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
}
+
function menu_footer($no_menu, $is_index)
{
global $version, $allow_demo_mode, $app_title, $power_url,
$power_by, $path_to_root, $Pagehelp, $Ajax;
include_once($path_to_root . "/includes/date_functions.inc");
- if ($no_menu == false)
+ echo "</td></tr></table>\n"; // 'main_page'
+ if ($no_menu == false) // bottom status line
{
if ($is_index)
echo "<table class=bottomBar>\n";
$Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
echo "<td id='hotkeyshelp'>".$phelp."</td>";
}
- echo "</tr></table>\n";
+ echo "</td></tr></table>\n";
}
- echo "</td></tr></table></td>\n";
- echo "</table>\n";
+ echo "</td></tr> </table>\n"; // 'callout_main'
if ($no_menu == false)
{
echo "<table align='center' id='footer'>\n";
function display_applications(&$waapp)
{
global $path_to_root;
-
+
$selected_app = $waapp->get_selected_application();
if (!$_SESSION["wa_current_user"]->check_application_access($selected_app))
return;
+ if (method_exists($selected_app, 'render_index'))
+ {
+ $selected_app->render_index();
+ return;
+ }
+
+ echo "<table width=100% cellpadding='0' cellspacing='0'>";
foreach ($selected_app->modules as $module)
{
if (!$_SESSION["wa_current_user"]->check_module_access($module))
{
echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
}
- elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
+ elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
{
echo $img.'<span class="inactive">'
.access_string($appfunction->label, true)
{
echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
}
- elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
+ elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
{
echo $img.'<span class="inactive">'
.access_string($appfunction->label, true)
echo "</tr></table></td></tr>";
}
-
echo "</table>";
- }
+ }
}
-
?>
\ No newline at end of file
{
global $path_to_root, $help_base_url, $db_connections;
echo "<table class='callout_main' border='0' cellpadding='0' cellspacing='0'>\n";
- echo "<tr>\n";
+ echo "<tr>";
echo "<td colspan='2' rowspan='2'>\n";
echo "<table class='main_page' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<td>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
- echo "<td class='quick_menu'>\n";
+ echo "<td class='quick_menu'>\n"; // tabs
if (!$no_menu)
{
$applications = $_SESSION['App']->applications;
$local_path_to_root = $path_to_root;
- $img = "<img src='$local_path_to_root/themes/cool/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
- $himg = "<img src='$local_path_to_root/themes/cool/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
+
$sel_app = $_SESSION['sel_app'];
echo "<table cellpadding=0 cellspacing=0 width='100%'><tr><td>";
echo "<div class=tabs>";
echo "<a class='".($sel_app == $app->id ? 'selected' : 'menu_tab')
."' href='$local_path_to_root/index.php?application=".$app->id
."'$acc[1]>" .$acc[0] . "</a>";
- }
+ }
}
echo "</div>";
echo "</td></tr></table>";
+ // top status bar
+ $img = "<img src='$local_path_to_root/themes/aqua/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
+ $himg = "<img src='$local_path_to_root/themes/aqua/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
echo "<table class=logoutBar>";
echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
$power_by, $path_to_root, $Pagehelp, $Ajax;
include_once($path_to_root . "/includes/date_functions.inc");
- if ($no_menu == false)
+ echo "</td></tr></table>\n"; // 'main_page'
+ if ($no_menu == false) // bottom status line
{
if ($is_index)
echo "<table class=bottomBar>\n";
$Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
echo "<td id='hotkeyshelp'>".$phelp."</td>";
}
- echo "</tr></table>\n";
+ echo "</td></tr></table>\n";
}
- echo "</td></tr></table></td>\n";
- echo "</table>\n";
+ echo "</td></tr> </table>\n"; // 'callout_main'
if ($no_menu == false)
{
echo "<table align='center' id='footer'>\n";
function display_applications(&$waapp)
{
global $path_to_root;
+
$selected_app = $waapp->get_selected_application();
if (!$_SESSION["wa_current_user"]->check_application_access($selected_app))
return;
- foreach ($selected_app->modules as $module)
+ if (method_exists($selected_app, 'render_index'))
+ {
+ $selected_app->render_index();
+ return;
+ }
+
+ echo "<table width=100% cellpadding='0' cellspacing='0'>";
+ foreach ($elected_app->modules as $module)
{
if (!$_SESSION["wa_current_user"]->check_module_access($module))
continue;
{
echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
}
- elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
+ elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
{
echo $img.'<span class="inactive">'
.access_string($appfunction->label, true)
{
echo $img.menu_link($appfunction->link, $appfunction->label)."<br>\n";
}
- elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
+ elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items())
{
echo $img.'<span class="inactive">'
.access_string($appfunction->label, true)
echo "</tr></table></td></tr>";
}
-
echo "</table>";
- }
+ }
}
?>
\ No newline at end of file
echo "<td>\n";
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
- echo "<td class='quick_menu'>\n";
+ echo "<td class='quick_menu'>\n"; // tabs
if (!$no_menu)
{
$applications = $_SESSION['App']->applications;
$local_path_to_root = $path_to_root;
- $img = "<img src='$local_path_to_root/themes/default/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
- $himg = "<img src='$local_path_to_root/themes/default/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
$sel_app = $_SESSION['sel_app'];
echo "<table cellpadding=0 cellspacing=0 width='100%'><tr><td>";
echo "<div class=tabs>";
echo "</div>";
echo "</td></tr></table>";
+ // top status bar
+ $img = "<img src='$local_path_to_root/themes/default/images/login.gif' width='14' height='14' border='0' alt='"._('Logout')."'> ";
+ $himg = "<img src='$local_path_to_root/themes/default/images/help.gif' width='14' height='14' border='0' alt='"._('Help')."'> ";
echo "<table class=logoutBar>";
echo "<tr><td class=headingtext3>" . $db_connections[$_SESSION["wa_current_user"]->company]["name"] . " | " . $_SERVER['SERVER_NAME'] . " | " . $_SESSION["wa_current_user"]->name . "</td>";
$indicator = "$path_to_root/themes/".user_theme(). "/images/ajax-loader.gif";
$power_by, $path_to_root, $Pagehelp, $Ajax;
include_once($path_to_root . "/includes/date_functions.inc");
- if ($no_menu == false)
+ echo "</td></tr></table>\n"; // 'main_page'
+ if ($no_menu == false) // bottom status line
{
if ($is_index)
echo "<table class=bottomBar>\n";
$Ajax->addUpdate(true, 'hotkeyshelp', $phelp);
echo "<td id='hotkeyshelp'>".$phelp."</td>";
}
- echo "</tr></table>\n";
+ echo "</td></tr></table>\n";
}
- echo "</td></tr></table></td>\n";
+ echo "</td></tr> </table>\n"; // 'callout_main'
echo "</table>\n";
if ($no_menu == false)
{
$selected_app = $waapp->get_selected_application();
if (!$_SESSION["wa_current_user"]->check_application_access($selected_app))
return;
+
+ if (method_exists($selected_app, 'render_index'))
+ {
+ $selected_app->render_index();
+ return;
+ }
+
+ echo "<table width=100% cellpadding='0' cellspacing='0'>";
foreach ($selected_app->modules as $module)
{
if (!$_SESSION["wa_current_user"]->check_module_access($module))
}
echo "</tr></table></td></tr>";
- }
+ }
echo "</table>";
- }
- }
-
-
-
+ }
+}
?>
\ No newline at end of file