2001-01-05 14:35:42 +01:00
|
|
|
<?php
|
2001-01-05 14:37:04 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* 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$ */
|
2001-01-05 14:35:42 +01:00
|
|
|
|
|
|
|
function parse_navbar($force = False)
|
|
|
|
{
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
|
|
|
$tpl->set_unknowns('remove');
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->set_file(
|
|
|
|
array(
|
|
|
|
'navbar' => 'navbar.tpl',
|
|
|
|
'navbar_app' => 'navbar_app.tpl'
|
|
|
|
)
|
|
|
|
);
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['navbar_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['flags']['navbar_target'])
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$target = ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
$i = 1;
|
2001-08-31 02:44:46 +02:00
|
|
|
while ($app = each($GLOBALS['phpgw_info']['navbar']))
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'text')
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$tabs[$i]['label'] = lang($app[1]['title']);
|
|
|
|
$tabs[$i]['link'] = $app[1]['url'];
|
2001-08-31 02:44:46 +02:00
|
|
|
if (ereg($GLOBALS['phpgw_info']['navbar'][$app[0]],$PHP_SELF))
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$selected = $i;
|
|
|
|
}
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$title = '<img src="' . $app[1]['icon'] . '" alt="' . lang($app[1]['title']) . '" title="'
|
|
|
|
. lang($app[1]['title']) . '" border="0">';
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'icons_and_text')
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$title .= "<br>" . lang($app[1]['title']);
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['width'] = '7%';
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['width'] = '3%';
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-01-07 10:34:45 +01:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['value'] = '<a href="' . $app[1]['url'] . '"' . $target . '>' . $title . '</a>';
|
|
|
|
$var['align'] = 'center';
|
|
|
|
$tpl->set_var($var);
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->parse('applications','navbar_app',True);
|
|
|
|
}
|
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'text')
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['navbar_color'] = $GLOBALS['phpgw_info']['theme']['bg_color'];
|
|
|
|
$var['align'] = 'right';
|
|
|
|
$var['value'] = $GLOBALS['phpgw']->common->create_tabs($tabs,$selected,-1);
|
|
|
|
$tpl->set_var($var);
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->parse('applications','navbar_app',True);
|
|
|
|
}
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['powered_by'] = lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$db = $GLOBALS['phpgw']->db;
|
2001-08-15 04:14:18 +02:00
|
|
|
$db->query("select count(session_id) from phpgw_sessions where session_flags != 'A'");
|
2001-07-28 16:21:32 +02:00
|
|
|
$db->next_record();
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['current_users'] = '<a href="' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uicurrentsessions.list_sessions')
|
|
|
|
. '"> ' . lang('Current users') . ': ' . $db->f(0) . '</a>';
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-12-01 01:54:58 +01:00
|
|
|
$now = time();
|
2001-09-02 09:24:03 +02:00
|
|
|
$var['user_info'] = $GLOBALS['phpgw']->common->display_fullname() . ' - '
|
2001-12-01 01:54:58 +01:00
|
|
|
. lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
|
|
|
|
. $GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
|
|
|
|
// . lang($GLOBALS['phpgw']->common->show_date($now,'F')) . ' '
|
|
|
|
// . $GLOBALS['phpgw']->common->show_date($now,'d, Y');
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
// Maybe we should create a common function in the phpgw_accounts_shared.inc.php file
|
|
|
|
// to get rid of duplicate code.
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$api_messages = lang('You are required to change your password during your first login')
|
|
|
|
. '<br> Click this image on the navbar: <img src="'
|
2001-08-31 02:44:46 +02:00
|
|
|
. $GLOBALS['phpgw']->common->image('preferences','navbar.gif').'">';
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
elseif ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30))
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$api_messages = lang('it has been more then x days since you changed your password',30);
|
|
|
|
}
|
2001-01-05 14:35:42 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
// This is gonna change
|
|
|
|
if (isset($cd))
|
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['messages'] = $api_messages . '<br>' . checkcode($cd);
|
2001-07-28 16:21:32 +02:00
|
|
|
}
|
2001-09-02 09:24:03 +02:00
|
|
|
$tpl->set_var($var);
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->pfp('out','navbar');
|
2001-07-22 01:29:07 +02:00
|
|
|
// If the application has a header include, we now include it
|
2001-09-18 05:56:01 +02:00
|
|
|
if (!@$GLOBALS['phpgw_info']['flags']['noappheader'] && @isset($GLOBALS['HTTP_GET_VARS']['menuaction']))
|
2001-07-22 01:29:07 +02:00
|
|
|
{
|
2001-09-17 04:18:32 +02:00
|
|
|
list($app,$class,$method) = explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']);
|
|
|
|
if (is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions['header'])
|
2001-07-22 01:29:07 +02:00
|
|
|
{
|
2001-09-17 04:18:32 +02:00
|
|
|
$GLOBALS[$class]->header();
|
2001-07-22 01:29:07 +02:00
|
|
|
}
|
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
$GLOBALS['phpgw']->common->hook('after_navbar');
|
2001-07-28 16:21:32 +02:00
|
|
|
return;
|
|
|
|
}
|
2001-01-06 10:20:33 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
function parse_navbar_end()
|
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'bottom')
|
2001-07-28 16:21:32 +02:00
|
|
|
{
|
|
|
|
$tpl = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
|
|
|
$tpl->set_unknowns('remove');
|
2001-01-07 10:18:44 +01:00
|
|
|
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->set_file(
|
|
|
|
array(
|
|
|
|
'footer' => 'footer.tpl'
|
|
|
|
)
|
|
|
|
);
|
2001-08-31 02:44:46 +02:00
|
|
|
$var = Array(
|
|
|
|
'table_bg_color' => $GLOBALS['phpgw_info']['theme']['navbar_bg'],
|
2001-09-02 09:24:03 +02:00
|
|
|
'msg' => "<p><p>\n".lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
|
2001-08-31 02:44:46 +02:00
|
|
|
'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
|
|
|
|
);
|
|
|
|
$tpl->set_var($var);
|
|
|
|
$GLOBALS['phpgw']->common->hook('navbar_end');
|
2001-07-28 16:21:32 +02:00
|
|
|
$tpl->pfp('out','footer');
|
|
|
|
}
|
|
|
|
}
|