egroupware_official/phpgwapi/templates/default/navbar.inc.php

128 lines
5.6 KiB
PHP
Raw Normal View History

<?php
/**************************************************************************\
* phpGroupWare *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
function parse_navbar($force = False)
{
global $phpgw_info, $phpgw, $menuaction;
$tpl = createobject("phpgwapi.Template",PHPGW_TEMPLATE_DIR);
$tpl->set_unknowns("remove");
$tpl->set_file(array("navbar" => "navbar.tpl",
"navbar_app" => "navbar_app.tpl"
));
$tpl->set_var("navbar_color",$phpgw_info["theme"]["navbar_bg"]);
if ($phpgw_info["flags"]["navbar_target"]) {
$target = ' target="' . $phpgw_info["flags"]["navbar_target"] . '"';
}
$i = 1;
while ($app = each($phpgw_info["navbar"])) {
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "text") {
2001-01-21 15:50:39 +01:00
$tabs[$i]["label"] = lang($app[1]["title"]);
$tabs[$i]["link"] = $app[1]["url"];
if (ereg($phpgw_info["navbar"][$app[0]],$PHP_SELF)) {
$selected = $i;
}
$i++;
} else {
2001-01-21 15:50:39 +01:00
$title = '<img src="' . $app[1]["icon"] . '" alt="' . lang($app[1]["title"]) . '" title="'
. lang($app[1]["title"]) . '" border="0">';
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "icons_and_text") {
2001-01-21 15:50:39 +01:00
$title .= "<br>" . lang($app[1]["title"]);
$tpl->set_var("width","7%");
} else {
$tpl->set_var("width","3%");
}
$tpl->set_var("value",'<a href="' . $app[1]["url"] . '"' . $target . '>' . $title . '</a>');
$tpl->set_var("align","center");
$tpl->parse("applications","navbar_app",True);
}
}
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "text") {
$tpl->set_var("navbar_color",$phpgw_info["theme"]["bg_color"]);
$tpl->set_var("align","right");
$tpl->set_var("value",$phpgw->common->create_tabs($tabs,$selected,-1));
$tpl->parse("applications","navbar_app",True);
}
if ($phpgw_info["server"]["showpoweredbyon"] == "top") {
$tpl->set_var("powered_by",lang("Powered by phpGroupWare version x",$phpgw_info["server"]["versions"]["phpgwapi"]));
}
if (isset($phpgw_info["navbar"]["admin"]) && isset($phpgw_info["user"]["preferences"]["common"]["show_currentusers"])) {
$db = $phpgw->db;
$db->query("select count(*) from phpgw_sessions where session_flags != 'A'");
$db->next_record();
2001-03-10 09:53:42 +01:00
$tpl->set_var("current_users",'<a href="' . $phpgw->link('/admin/currentusers.php') . '">&nbsp;'
. lang("Current users") . ': ' . $db->f(0) . '</a>');
}
$tpl->set_var("user_info",$phpgw->common->display_fullname() . " - "
. lang($phpgw->common->show_date(time(),"l")) . " "
. lang($phpgw->common->show_date(time(),"F")) . " "
. $phpgw->common->show_date(time(),"d, Y"));
// Maybe we should create a common function in the phpgw_accounts_shared.inc.php file
// to get rid of duplicate code.
if ($phpgw_info["user"]["lastpasswd_change"] == 0) {
$api_messages = lang("You are required to change your password during your first login")
. '<br> Click this image on the navbar: <img src="'
. $phpgw->common->image('preferences','navbar.gif').'">';
} else if ($phpgw_info["user"]["lastpasswd_change"] < time() - (86400*30)) {
$api_messages = lang("it has been more then x days since you changed your password",30);
}
// This is gonna change
if (isset($cd)) {
$tpl->set_var("messages",$api_messages . "<br>" . checkcode($cd));
}
$tpl->pfp('out','navbar');
// If the application has a header include, we now include it
if (!@$phpgw_info['flags']['noappheader'] && $menuaction)
{
list($app,$class,$method) = explode('.',$menuaction);
if ($app && $class && $method)
{
$obj = CreateObject(sprintf('%s.%s',$app,$class));
if (is_array($obj->public_functions) && $obj->public_functions['header'])
{
eval("\$obj->header();");
}
}
}
2001-06-16 21:39:33 +02:00
$phpgw->common->hook('after_navbar');
return;
}
2001-01-06 10:20:33 +01:00
function parse_navbar_end()
{
global $phpgw_info, $phpgw;
if ($phpgw_info["server"]["showpoweredbyon"] == "bottom") {
$msg = "<P><P>\n" . lang("Powered by phpGroupWare version x", $phpgw_info["server"]["versions"]["phpgwapi"]);
2001-02-06 14:58:59 +01:00
$tpl = createobject("phpgwapi.Template",PHPGW_TEMPLATE_DIR);
$tpl->set_unknowns("remove");
$tpl->set_file(array("footer" => "footer.tpl"));
$tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
$tpl->set_var("msg",$msg);
$tpl->set_var("version",$phpgw_info["server"]["versions"]["phpgwapi"]);
$phpgw->common->hook('navbar_end');
2001-04-29 01:59:25 +02:00
$tpl->pfp("out","footer");
}
2001-01-06 10:20:33 +01:00
}