set_file(
array(
'navbar' => 'navbar.tpl'
)
);
$var['img_root'] = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/justweb/images';
$var['table_bg_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
if ($GLOBALS['phpgw_info']['flags']['navbar_target'])
{
$target = ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
}
while ($app = each($GLOBALS['phpgw_info']['navbar']))
{
if ($app[1]['title'] != "Home" && $app[1]['title'] != 'preferences' && ! ereg('About',$app[1]['title']) && $app[1]['title'] != 'Logout')
{
$title = '';
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'icons_and_text')
{
$title .= '
' . lang($app[1]['title']);
}
$applications .= '
' . $title . '';
}
}
$var ['applications'] = $applications;
$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'];
if ($GLOBALS['phpgw_info']['flags']['currentapp'] == 'home')
{
$var['welcome_img'] = PHPGW_IMAGES_DIR . '/welcome-red.gif';
}
else
{
$var['welcome_img'] = PHPGW_IMAGES_DIR . '/welcome-grey.gif';
}
if ($GLOBALS['phpgw_info']['flags']['currentapp'] == 'preferences')
{
$var['preferences_img'] = PHPGW_IMAGES_DIR . '/preferences-red.gif';
}
else
{
$var['preferences_img'] = PHPGW_IMAGES_DIR . '/preferences-grey.gif';
}
$var['logout_img'] = PHPGW_IMAGES_DIR . '/logout-grey.gif';
/*
if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
{
$var['powered_by'] = lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
}
if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
{
$db = $GLOBALS['phpgw']->db;
$db->query("select count(session_id) from phpgw_sessions");
$db->next_record();
$var['current_users'] = ' '
. lang('Current users') . ': ' . $db->f(0) . '';
}
*/
$now = time();
$var['user_info'] = $GLOBALS['phpgw']->common->display_fullname() . ' - '
. 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');
/*
* Maybe we should create a common function in the phpgw_accounts_shared.inc.php file
* to get rid of duplicate code.
*/
/*
if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] == 0)
{
$api_messages = lang('You are required to change your password during your first login')
. '
Click this image on the navbar: ';
}
elseif ($GLOBALS['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))
{
$var['messages'] = $api_messages . "
" . checkcode($cd);
}
*/
/*
function display_section($appname,$title,$file)
{
$GLOBALS['prefs'][$appname]['title'] = $title;
$GLOBALS['prefs'][$appname]['file'][] = $file;
}
$temp_common = CreateObject('phpgwapi.common');
$temp_hooks->process('preferences',array('preferences'));
*/
// echo '>prefs
'; // print_r($GLOBALS['prefs']); // echo ''; $tpl->set_var($var); $tpl->pfp('out','navbar'); // If the application has a header include, we now include it if (!@$GLOBALS['phpgw_info']['flags']['noappheader'] && @isset($GLOBALS['HTTP_GET_VARS']['menuaction'])) { list($app,$class,$method) = explode('.',$GLOBALS['HTTP_GET_VARS']['menuaction']); if (is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions['header']) { $GLOBALS[$class]->header(); } } $GLOBALS['phpgw']->hooks->process('after_navbar'); return; } function parse_navbar_end() { $tpl = createobject('phpgwapi.Template',PHPGW_TEMPLATE_DIR); $tpl->set_file( array( 'footer' => 'footer.tpl' ) ); $var = Array( 'img_root' => $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/justweb/images', 'table_bg_color' => $GLOBALS['phpgw_info']['theme']['navbar_bg'], 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'], 'user_info' => $GLOBALS['phpgw']->common->display_fullname() . ' - ' . lang($GLOBALS['phpgw']->common->show_date(time(),'l')) . ' ' . lang($GLOBALS['phpgw']->common->show_date(time(),'F')) . ' ' . $GLOBALS['phpgw']->common->show_date(time(),'d, Y') ); $tpl->set_var($var); $GLOBALS['phpgw']->hooks->process('navbar_end'); echo $tpl->pfp('out','footer'); }