set_file( array( 'navbartpl' => 'navbar.tpl' ) ); $tpl->set_block('navbartpl','preferences'); $tpl->set_block('navbartpl','navbar'); $var['img_root'] = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/verdilak/images'; $var['table_bg_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg']; $var['navbar_text'] = $GLOBALS['phpgw_info']['theme']['navbar_text']; $applications = ''; foreach($GLOBALS['phpgw_info']['navbar'] as $app => $app_data) { if ($app != 'home' && $app != 'preferences' && ! ereg('about',$app) && $app != 'logout') { if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] != 'text') { $title = '' . $app_data['title'] . ''; } if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] != 'icons') { $title .= '
' . $app_data['title']; } $applications .= '
'; unset($title); } } $var['applications'] = $applications; if (isset($GLOBALS['phpgw_info']['theme']['special_logo'])) { $var['logo'] = $GLOBALS['phpgw_info']['theme']['special_logo']; } else { $var['logo'] = 'logo.gif'; } $var['logo_file'] = $GLOBALS['phpgw']->common->image('phpgwapi',$GLOBALS['phpgw_info']['server']['login_logo_file']?$GLOBALS['phpgw_info']['server']['login_logo_file']:$var['logo']); $var['logo_url'] = $GLOBALS['phpgw_info']['server']['login_logo_url']?$GLOBALS['phpgw_info']['server']['login_logo_url']:'http://www.eGroupWare.org'; $var['logo_title'] = $GLOBALS['phpgw_info']['server']['login_logo_title']?$GLOBALS['phpgw_info']['server']['login_logo_title']:'www.eGroupWare.org'; $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'] = $GLOBALS['phpgw']->common->image('phpgwapi','welcome-red'); } else { $var['welcome_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','welcome-grey'); } if ($GLOBALS['phpgw_info']['flags']['currentapp'] == 'preferences') { $var['preferences_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','preferences-red'); } else { $var['preferences_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','preferences-grey'); } $var['logout_img'] = $GLOBALS['phpgw']->common->image('phpgwapi','logout-grey'); $var['powered_by'] = lang('Powered by phpGroupWare version %1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']); if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && $GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']) { $var['current_users'] = ' ' . lang('Current users') . ': ' . $GLOBALS['phpgw']->session->total() . ''; } $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: '; } else if ($GLOBALS['phpgw_info']['user']['lastpasswd_change'] < time() - (86400*30)) { $api_messages = lang('it has been more then %1 days since you changed your password',30); } // This is gonna change if (isset($cd)) { $var['messages'] = $api_messages . '
' . checkcode($cd); } if (isset($GLOBALS['phpgw_info']['flags']['app_header'])) { $var['current_app_header'] = $GLOBALS['phpgw_info']['flags']['app_header']; $var['th_bg'] = $GLOBALS['phpgw_info']['theme']['th_bg']; } else { $tpl->set_block('navbar','app_header','app_header'); $var['app_header'] = ''; } $tpl->set_var($var); // check if user is allowed to change his prefs if ($GLOBALS['phpgw_info']['user']['apps']['preferences']) { $tpl->parse('preferences_icon','preferences'); } else { $tpl->set_var('preferences_icon',''); } $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/verdilak/images', 'table_bg_color' => $GLOBALS['phpgw_info']['theme']['navbar_bg'], 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] ); if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && $GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']) { $var['current_users'] = ' ' . ''.lang('Current users') . ': ' . $GLOBALS['phpgw']->session->total() . ''; } $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']); $var['powered_by'] = lang('Powered by phpGroupWare version %1',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']); $tpl->set_var($var); $GLOBALS['phpgw']->hooks->process('navbar_end'); echo $tpl->pfp('out','footer'); }