* * -------------------------------------------- * * 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: home.php,v 1.16.2.1.2.5 2004/03/30 04:42:15 skwashd Exp $ */ $phpgw_info = array(); if (!is_file('header.inc.php')) { echo '

'; exit; } $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] : $_COOKIE['sessionid']; if (!isset($GLOBALS['sessionid']) || !$GLOBALS['sessionid']) { Header('Location: login.php'); exit; } $GLOBALS['phpgw_info']['flags'] = array( 'noheader' => True, 'nonavbar' => True, 'currentapp' => 'home', 'enable_network_class' => True, 'enable_contacts_class' => True, 'enable_nextmatchs_class' => True ); include('header.inc.php'); // check if forward parameter is set if (@$_GET['phpgw_forward']) { foreach($_GET as $name => $value) { // find phpgw_ in the $_GET parameters but skip phpgw_forward because of redirect call below if (ereg('phpgw_', $name) && ($name != 'phpgw_forward')) { $name = substr($name, 6); // cut 'phpgw_' $extra_vars[$name] = $value; } } $GLOBALS['phpgw']->redirect_link($_GET['phpgw_forward'], $extra_vars); exit; } if ($GLOBALS['phpgw_info']['server']['force_default_app'] && $GLOBALS['phpgw_info']['server']['force_default_app'] != 'user_choice') { $GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] = $GLOBALS['phpgw_info']['server']['force_default_app']; } if (($GLOBALS['phpgw_info']['user']['preferences']['common']['useframes'] && $GLOBALS['phpgw_info']['server']['useframes'] == 'allowed') || ($GLOBALS['phpgw_info']['server']['useframes'] == 'always')) { if ($_GET['cd'] == 'yes') { if (! $navbarframe && ! $framebody) { $tpl = new Template(PHPGW_TEMPLATE_DIR); $tpl->set_file(array( 'frames' => 'frames.tpl', 'frame_body' => 'frames_body.tpl', 'frame_navbar' => 'frames_navbar.tpl' )); $tpl->set_var('navbar_link',$GLOBALS['phpgw']->link('index.php','navbarframe=True&cd=yes')); if ($GLOBALS['forward']) { $tpl->set_var('body_link',$GLOBALS['phpgw']->link($GLOBALS['forward'])); } else { $tpl->set_var('body_link',$GLOBALS['phpgw']->link('index.php','framebody=True&cd=yes')); } if ($GLOBALS['phpgw_info']['user']['preferences']['common']['frame_navbar_location'] == 'bottom') { $tpl->set_var('frame_size','*,60'); $tpl->parse('frames_','frame_body',True); $tpl->parse('frames_','frame_navbar',True); } else { $tpl->set_var('frame_size','60,*'); $tpl->parse('frames_','frame_navbar',True); $tpl->parse('frames_','frame_body',True); } $tpl->pparse('out','frames'); } if ($navbarframe) { $GLOBALS['phpgw']->common->phpgw_header(); echo parse_navbar(); } } } elseif ($_GET['cd']=='yes' && $GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] && $GLOBALS['phpgw_info']['user']['apps'][$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app']]) { $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] . '/' . 'index.php')); } else { $GLOBALS['phpgw']->common->phpgw_header(); echo parse_navbar(); } $GLOBALS['phpgw']->translation->add_app('mainscreen'); if (lang('mainscreen_message') != 'mainscreen_message*') { echo '
' . stripslashes(lang('mainscreen_message')) . '
'; } if ((isset($GLOBALS['phpgw_info']['user']['apps']['admin']) && $GLOBALS['phpgw_info']['user']['apps']['admin']) && (isset($GLOBALS['phpgw_info']['server']['checkfornewversion']) && $GLOBALS['phpgw_info']['server']['checkfornewversion'])) { $GLOBALS['phpgw']->network->set_addcrlf(False); $lines = $GLOBALS['phpgw']->network->gethttpsocketfile('http://www.phpgroupware.org/currentversion'); for ($i=0; $icommon->cmp_version($GLOBALS['phpgw_info']['server']['versions']['phpgwapi'],$line_found[1])) { echo '

There is a new version of phpGroupWare available. http://www.phpgroupware.org'; } $_found = False; $GLOBALS['phpgw']->db->query("select app_name,app_version from phpgw_applications",__LINE__,__FILE__); while($GLOBALS['phpgw']->db->next_record()) { $_db_version = $GLOBALS['phpgw']->db->f('app_version'); $_app_name = $GLOBALS['phpgw']->db->f('app_name'); $_versionfile = $GLOBALS['phpgw']->common->get_app_dir($_app_name) . '/setup/setup.inc.php'; if(file_exists($_versionfile)) { include($_versionfile); $_file_version = $setup_info[$_app_name]['version']; $_app_title = $GLOBALS['phpgw_info']['apps'][$_app_name]['title']; unset($setup_info); if($GLOBALS['phpgw']->common->cmp_version_long($_db_version,$_file_version)) { $_found = True; $_app_string .= '
' . $_app_title; } unset($_file_version); unset($_app_title); } unset($_db_version); unset($_versionfile); } if($_found) { echo '
' . lang('The following applications require upgrades') . ':' . "\n"; echo $_app_string . "\n"; echo '
' . lang('Please run setup to become current') . '.' . "\n"; unset($_app_string); } } if (isset($GLOBALS['phpgw_info']['user']['apps']['notifywindow']) && $GLOBALS['phpgw_info']['user']['apps']['notifywindow']) { ?> ' . lang('Open notify window') . ''; } /* This initializes the users portal_order preference if it does not exist. */ if(!is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order']) && $GLOBALS['phpgw_info']['apps']) { $GLOBALS['phpgw']->preferences->delete('portal_order'); @reset($GLOBALS['phpgw_info']['apps']); $order = 0; while (list(,$p) = each($GLOBALS['phpgw_info']['apps'])) { if($GLOBALS['phpgw_info']['user']['apps'][$p['name']]) { $GLOBALS['phpgw']->preferences->add('portal_order',$order++,$p['id']); } } $GLOBALS['phpgw_info']['user']['preferences'] = $GLOBALS['phpgw']->preferences->save_repository(); } if(is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order'])) { $app_check = Array(); @ksort($GLOBALS['phpgw_info']['user']['preferences']['portal_order']); while(list($order,$app) = each($GLOBALS['phpgw_info']['user']['preferences']['portal_order'])) { if(!isset($app_check[intval($app)]) || !$app_check[intval($app)]) { $app_check[intval($app)] = True; $sorted_apps[] = $GLOBALS['phpgw']->applications->id2name(intval($app)); } } } else { $sorted_apps = Array( 'email', 'calendar', 'news_admin', 'addressbook', 'squirrelmail' ); } @reset($sorted_apps); $GLOBALS['phpgw']->hooks->process('home',$sorted_apps); if($GLOBALS['portal_order']) { $GLOBALS['phpgw']->preferences->delete('portal_order'); @reset($GLOBALS['portal_order']); while(list($app_order,$app_id) = each($GLOBALS['portal_order'])) { $GLOBALS['phpgw']->preferences->add('portal_order',$app_order,$app_id); } $GLOBALS['phpgw']->preferences->save_repository(); } //$phpgw->common->debug_phpgw_info(); //$phpgw->common->debug_list_core_functions(); $GLOBALS['phpgw']->common->phpgw_footer(); ?>