2001-03-31 04:24:36 +02:00
|
|
|
<?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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2001-05-15 19:00:21 +02:00
|
|
|
/* $Id$ */
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-04-28 23:48:05 +02:00
|
|
|
function parse_navbar($force = False)
|
|
|
|
{
|
|
|
|
$tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
|
|
|
$tpl->set_unknowns('remove');
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$tpl->set_file(
|
|
|
|
array(
|
|
|
|
'navbar' => 'navbar.tpl'
|
|
|
|
)
|
|
|
|
);
|
2001-05-15 19:00:21 +02:00
|
|
|
|
2001-09-19 07:44:16 +02:00
|
|
|
//$tpl->set_block('navbar','B_powered_top','V_powered_top');
|
|
|
|
//$tpl->set_block('navbar','B_num_users','V_num_users');
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['img_root'] = PHPGW_IMAGES_DIR;
|
|
|
|
$var['img_root_roll'] = PHPGW_IMAGES_DIR . '/rollover';
|
|
|
|
$var['table_bg_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-12-10 05:17:40 +01:00
|
|
|
$find_double = strrpos($GLOBALS['phpgw_info']['server']['webserver_url'],'//');
|
|
|
|
$find_single = strrpos($GLOBALS['phpgw_info']['server']['webserver_url'],'/');
|
|
|
|
if($find_double)
|
|
|
|
{
|
|
|
|
if($find_single == $find_double + 1)
|
|
|
|
{
|
|
|
|
$strip_portion = $GLOBALS['phpgw_info']['server']['webserver_url'];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strip_portion = substr($GLOBALS['phpgw_info']['server']['webserver_url'],0,$find_double + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$strip_portion = '';
|
|
|
|
}
|
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
# echo '<pre>'; print_r($GLOBALS['phpgw_info']['navbar']); echo '</pre>';
|
2001-05-15 06:21:16 +02:00
|
|
|
$applications = '';
|
2001-08-31 02:44:46 +02:00
|
|
|
while ($app = each($GLOBALS['phpgw_info']['navbar']))
|
2001-04-28 23:48:05 +02:00
|
|
|
{
|
2001-12-10 05:17:40 +01:00
|
|
|
if ($app[1]['title'] != 'Home' && $app[1]['title'] != 'preferences' && !ereg('About',$app[1]['title']) && $app[1]['title'] != 'Logout')
|
|
|
|
// if ($app[1]['title'] != 'Home' && $app[1]['title'] != 'preferences' && $app[1]['title'] != 'About' && $app[1]['title'] != 'Logout')
|
2001-04-28 23:48:05 +02:00
|
|
|
{
|
|
|
|
$title = '<img src="' . $app[1]['icon'] . '" alt="' . $app[1]['title'] . '" title="'
|
|
|
|
. lang($app[1]['title']) . '" border="0" name="' . $app[0] . '">';
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$img_src_over = $GLOBALS['phpgw']->common->image($app[0],'navbar-over.gif');
|
|
|
|
$img_src_out = $GLOBALS['phpgw']->common->image($app[0],'navbar.gif');
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-05-15 19:00:21 +02:00
|
|
|
// onMouseOver="two.src='rollover/admin_over.gif'" onMouseOut="two.src='images/admin.gif'"><img src="images/admin.gif" border="0" name="two"
|
2001-05-13 06:08:01 +02:00
|
|
|
$applications .= '<tr><td><a href="' . $app[1]['url'] . '"';
|
2001-08-31 02:44:46 +02:00
|
|
|
if (isset($GLOBALS['phpgw_info']['flags']['navbar_target']))
|
2001-05-13 06:08:01 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$applications .= ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
|
2001-05-13 06:08:01 +02:00
|
|
|
}
|
|
|
|
|
2001-06-18 05:08:23 +02:00
|
|
|
if($img_src_over != '')
|
|
|
|
{
|
2001-12-10 05:17:40 +01:00
|
|
|
$applications .= ' onMouseOver="' . $app[0] . ".src='" . $img_src_over . '\'" ';
|
2001-06-18 05:08:23 +02:00
|
|
|
}
|
|
|
|
if($img_src_out != '')
|
|
|
|
{
|
2001-12-10 05:17:40 +01:00
|
|
|
$applications .= ' onMouseOut="' . $app[0] . ".src='" . $img_src_out . '\'" ';
|
2001-06-18 05:08:23 +02:00
|
|
|
}
|
2001-09-19 07:44:16 +02:00
|
|
|
$applications .= '>'.$title.'</a></td></tr>'."\r\n";
|
2001-06-18 05:08:23 +02:00
|
|
|
}
|
2001-12-10 05:17:40 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$img_src_over = $GLOBALS['phpgw']->common->image($app[0],'navbar-over.gif');
|
|
|
|
}
|
2001-06-18 05:08:23 +02:00
|
|
|
if($img_src_over)
|
|
|
|
{
|
2001-12-10 05:17:40 +01:00
|
|
|
if($strip_portion)
|
|
|
|
{
|
|
|
|
$img_src_over = str_replace($strip_portion,'',$img_src_over);
|
|
|
|
}
|
|
|
|
|
|
|
|
$pre_load[] = $img_src_over;
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
}
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['app_images'] = implode("','",$pre_load);
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['applications'] = $applications;
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['home_link'] = $GLOBALS['phpgw_info']['navbar']['home']['url'];
|
|
|
|
$var['preferences_link'] = $GLOBALS['phpgw_info']['navbar']['preferences']['url'];
|
|
|
|
$var['logout_link'] = $GLOBALS['phpgw_info']['navbar']['logout']['url'];
|
|
|
|
$var['help_link'] = $GLOBALS['phpgw_info']['navbar']['about']['url'];
|
2001-04-28 23:48:05 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['flags']['currentapp'] == 'home')
|
2001-04-28 23:48:05 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['welcome_img'] = PHPGW_IMAGES_DIR . '/welcome-red.gif';
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['welcome_img'] = PHPGW_IMAGES_DIR . '/welcome-grey.gif';
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['flags']['currentapp'] == 'preferences')
|
2001-04-28 23:48:05 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['preferences_img'] = PHPGW_IMAGES_DIR . '/preferences-red.gif';
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['preferences_img'] = PHPGW_IMAGES_DIR . '/preferences-grey.gif';
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
$var['logout_img'] = PHPGW_IMAGES_DIR . '/logout-grey.gif';
|
2001-04-28 23:48:05 +02:00
|
|
|
|
2001-09-19 07:44:16 +02:00
|
|
|
// "powered_by_color" and "_size" are is also used by number of current users thing
|
|
|
|
$var['powered_by_size'] = '2';
|
|
|
|
$var['powered_by_color'] = '#ffffff';
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
|
2001-04-28 23:48:05 +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']);
|
|
|
|
$tpl->set_var($var);
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
2001-05-15 19:00:21 +02:00
|
|
|
else
|
|
|
|
{
|
2001-09-19 07:44:16 +02:00
|
|
|
$var['powered_by'] = '';
|
|
|
|
$tpl->set_var($var);
|
2001-05-15 19:00:21 +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-04-28 23:48:05 +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');
|
2001-04-28 23:48:05 +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-09-19 07:44:16 +02:00
|
|
|
$tpl->set_var($var);
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
2001-09-19 07:44:16 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
$var['current_users'] = '';
|
|
|
|
$tpl->set_var($var);
|
|
|
|
}
|
|
|
|
|
|
|
|
$var['user_info_name'] = $GLOBALS['phpgw']->common->display_fullname();
|
2001-12-01 01:54:58 +01:00
|
|
|
$now = time();
|
2001-09-19 07:44:16 +02:00
|
|
|
$var['user_info_date'] =
|
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-09-19 07:44:16 +02:00
|
|
|
$var['user_info'] = $var['user_info_name'] .' - ' .$var['user_info_date'];
|
|
|
|
$var['user_info_size'] = '2';
|
|
|
|
$var['user_info_color'] = '#000000';
|
2001-04-28 23:48:05 +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-04-28 23:48:05 +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-04-28 23:48:05 +02:00
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
elseif ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30))
|
2001-04-28 23:48:05 +02:00
|
|
|
{
|
|
|
|
$api_messages = lang('it has been more then x days since you changed your password',30);
|
|
|
|
}
|
2001-03-31 04:24:36 +02:00
|
|
|
|
2001-04-28 23:48:05 +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-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
*/
|
2001-08-31 02:44:46 +02:00
|
|
|
$tpl->set_var($var);
|
2001-07-22 01:29:07 +02:00
|
|
|
$tpl->pfp('out','navbar');
|
2001-04-28 23:48:05 +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-04-28 23:48:05 +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-04-28 23:48:05 +02:00
|
|
|
}
|
2001-08-31 02:44:46 +02:00
|
|
|
$GLOBALS['phpgw']->common->hook('after_navbar');
|
2001-06-16 21:39:33 +02:00
|
|
|
return;
|
2001-04-28 23:48:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function parse_navbar_end()
|
|
|
|
{
|
|
|
|
$tpl = CreateObject('phpgwapi.Template',PHPGW_TEMPLATE_DIR);
|
|
|
|
$tpl->set_unknowns('remove');
|
|
|
|
|
2001-05-15 19:00:21 +02:00
|
|
|
$tpl->set_file(array('footer' => 'footer.tpl'));
|
|
|
|
$tpl->set_block('footer','B_powered_bottom','V_powered_bottom');
|
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'bottom')
|
2001-05-15 19:00:21 +02:00
|
|
|
{
|
2001-08-31 02:44:46 +02:00
|
|
|
$var = Array(
|
2001-08-31 17:22:31 +02:00
|
|
|
'powered' => lang('Powered by phpGroupWare version x', $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
|
2001-08-31 02:44:46 +02:00
|
|
|
'img_root' => PHPGW_IMAGES_DIR,
|
|
|
|
'power_backcolor' => $GLOBALS['phpgw_info']['theme']['navbar_bg'],
|
|
|
|
'power_textcolor' => $GLOBALS['phpgw_info']['theme']['navbar_text']
|
|
|
|
// 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
|
|
|
|
);
|
|
|
|
$tpl->set_var($var);
|
2001-05-15 19:00:21 +02:00
|
|
|
$tpl->parse('V_powered_bottom','B_powered_bottom');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$tpl->set_var('V_powered_bottom','');
|
|
|
|
}
|
2001-06-16 22:01:41 +02:00
|
|
|
|
2001-08-31 02:44:46 +02:00
|
|
|
$GLOBALS['phpgw']->common->hook('navbar_end');
|
2001-04-28 23:48:05 +02:00
|
|
|
$tpl->pfp('out','footer');
|
|
|
|
}
|