egroupware/home/index.php

296 lines
8.7 KiB
PHP
Raw Normal View History

<?php
2005-11-24 12:52:14 +01:00
/**************************************************************************\
* eGroupWare *
* http://www.egroupware.org *
* The file written by Joseph Engo <jengo@phpgroupware.org> *
* This file modified by Greg Haygood <shrykedude@bellsouth.net> *
* This file modified by Edo van Bruggend <edovanbruggen@raketnet.nl> *
* -------------------------------------------- *
* 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. *
\**************************************************************************/
2005-11-24 12:52:14 +01:00
/* $Id$ */
2005-11-24 12:52:14 +01:00
/*
** Initializing the home application
*/
$GLOBALS['egw_info'] = array(
'flags' => array(
'noheader' => False,
'nonavbar' => False,
'currentapp' => 'home',
'enable_network_class' => False,
'enable_contacts_class' => False,
'enable_nextmatchs_class' => False,
'include_xajax' => True,
2005-11-24 12:52:14 +01:00
)
);
2005-11-24 12:52:14 +01:00
include('../header.inc.php');
2005-11-24 12:52:14 +01:00
/*
** Initializing the template
*/
2005-11-24 12:52:14 +01:00
$GLOBALS['tpl'] =& CreateObject('phpgwapi.Template',$GLOBALS['egw']->common->get_tpl_dir('home'));
$GLOBALS['tpl']->set_unknowns('remove');
2005-11-24 12:52:14 +01:00
$GLOBALS['tpl']->set_file(
array(
'home' => 'home.tpl'
)
);
2005-11-24 12:52:14 +01:00
$GLOBALS['tpl']->set_block('home','notify_window','notify_window');
$GLOBALS['tpl']->set_block('home','begin_table','begin_table');
$GLOBALS['tpl']->set_block('home','end_table','end_table');
$GLOBALS['tpl']->set_block('home','begin_row','begin_row');
$GLOBALS['tpl']->set_block('home','end_row','end_row');
$GLOBALS['tpl']->set_block('home','cell','cell');
2005-11-24 12:52:14 +01:00
// Commented by alpeb: The following prevented anonymous users to get a home page. Perhaps it was done with anonymous users such as the ones
// used by wiki and sitemgr in mind. However, if you mark a normal user as anonymous just to avoid being shown in sessions and access log (like you would for an admin that doesn't want to be noticed), the user won't be able to login anymore. That's why I commented the code.
/*if ($GLOBALS['egw']->session->session_flags == 'A')
{
if ($_SERVER['HTTP_REFERER'] && strstr($_SERVER['HTTP_REFERER'],'home.php') === False)
{
$GLOBALS['egw']->redirect($_SERVER['HTTP_REFERER']);
}
else
{
// redirect to the login-page, better then giving an empty page
$GLOBALS['egw']->redirect('login.php');
}
exit;
}*/
2005-11-24 12:52:14 +01:00
/*
** Show the updates
*/
$GLOBALS['egw']->hooks->single('showUpdates','home');
/*
** Display the mainscreen message
*/
$GLOBALS['egw']->translation->add_app('mainscreen');
if((lang('mainscreen_message') != 'mainscreen_message*') && (lang('mainscreen_message') != 'mainscreen_message'))
{
echo '<div style="text-align: center;">' . lang('mainscreen_message') . "</div>\n";
}
2005-11-24 12:52:14 +01:00
/*
** Display the notification window
*/
if (isset($GLOBALS['egw_info']['user']['apps']['notifywindow']) && $GLOBALS['egw_info']['user']['apps']['notifywindow'])
{
2005-11-24 12:52:14 +01:00
$var['link'] = $GLOBALS['egw']->link('/notify.php');
$var['notifywindow'] = lang('Open notify window');
$GLOBALS['tpl']->set_var($var);
$GLOBALS['tpl']->pfp('out','notify_window');
}
2005-11-24 12:52:14 +01:00
/* This initializes the users portal_order preference if it does not exist. */
if(!is_array($GLOBALS['egw_info']['user']['preferences']['portal_order']) && $GLOBALS['egw_info']['apps'])
{
2005-11-24 12:52:14 +01:00
$GLOBALS['egw']->preferences->delete('portal_order');
@reset($GLOBALS['egw_info']['apps']);
$order = 0;
while (list(,$p) = each($GLOBALS['egw_info']['apps']))
{
2005-11-24 12:52:14 +01:00
if($GLOBALS['egw_info']['user']['apps'][$p['name']])
{
$GLOBALS['egw']->preferences->add('portal_order',$order++,$p['id']);
}
}
2005-11-24 12:52:14 +01:00
$GLOBALS['egw_info']['user']['preferences'] = $GLOBALS['egw']->preferences->save_repository();
}
2005-11-24 12:52:14 +01:00
if(is_array($GLOBALS['egw_info']['user']['preferences']['portal_order']))
{
2005-11-24 12:52:14 +01:00
$app_check = Array();
@ksort($GLOBALS['egw_info']['user']['preferences']['portal_order']);
while(list($order,$app) = each($GLOBALS['egw_info']['user']['preferences']['portal_order']))
{
2005-11-24 12:52:14 +01:00
if(!isset($app_check[(int)$app]) || !$app_check[(int)$app])
{
$app_check[(int)$app] = True;
$sorted_apps[] = $GLOBALS['egw']->applications->id2name((int)$app);
}
}
}
2005-11-24 12:52:14 +01:00
else
{
2005-11-24 12:52:14 +01:00
$sorted_apps = Array(
'calendar',
'email',
'infolog',
'news_admin'
);
}
2005-11-24 12:52:14 +01:00
// Now add the rest of the user's apps, to make sure we pick up any additions to the home display
foreach($GLOBALS['egw_info']['user']['apps'] as $app)
{
2005-11-24 12:52:14 +01:00
$sorted_apps[] = $app['name'];
}
2005-11-24 12:52:14 +01:00
//$GLOBALS['egw']->hooks->process('home',$sorted_apps);
/*
** Migrate preferences
** @param $appname, $var_old, $var_new, $type='user'
**
2005-11-24 12:52:14 +01:00
*/
function migrate_pref($appname,$var_old,$var_new,$type='user')
{
2005-11-24 12:52:14 +01:00
if(empty($appname) || empty($var_old) || empty($var_new))
{
return false;
}
$allowedtypes = array('user','default','forced');
if($type=='all')
{
$types = $allowedtypes;
}
elseif(in_array($type,$allowedtypes))
2005-11-24 12:52:14 +01:00
{
$types[] = $type;
}
else
{
2005-11-24 12:52:14 +01:00
return false;
}
$result = false;
foreach($types as $_type)
{
if(isset($GLOBALS['egw']->preferences->$_type[$appname][$var_old]))
{
$GLOBALS['egw']->preferences->$_type[$appname][$var_new] =
$GLOBALS['egw']->preferences->$_type[$appname][$var_old];
2005-11-24 12:52:14 +01:00
$result = true;
$GLOBALS['egw_info']['user']['preferences'] =
$GLOBALS['egw']->preferences->save_repository(false,$_type);
2005-11-24 12:52:14 +01:00
}
}
2005-11-24 12:52:14 +01:00
return $result;
}
2005-11-24 12:52:14 +01:00
$portal_oldvarnames = array('mainscreen_showevents', 'homeShowEvents','homeShowLatest','mainscreen_showmail','mainscreen_showbirthdays','mainscreen_show_new_updated');
$migrate_oldvarnames = false;
if($migrate_oldvarnames)
{
2005-11-24 12:52:14 +01:00
$_apps = $GLOBALS['egw_info']['user']['apps'];
@reset($_apps);
foreach($_apps as $_appname)
{
2005-11-24 12:52:14 +01:00
@reset($portal_oldvarnames);
foreach($portal_oldvarnames as $varname)
{
//echo "Want to migrate '$appname' from '$varname' to 'homepage_display'.<br>";
//migrate_pref($appname,$varname,'homepage_display','all');
}
}
}
2005-11-24 12:52:14 +01:00
$neworder = array();
$done = array();
2005-11-24 12:52:14 +01:00
/*
** Display application hooks
**
2005-11-24 12:52:14 +01:00
*/
2005-11-24 12:52:14 +01:00
$GLOBALS['tpl']->pfp('out','begin_table');
$tropen=0;
$tdopen=0;
$lastd = 0;
$numcols = 2;
$curcol = 1;
foreach($sorted_apps as $appname)
{
2005-11-24 12:52:14 +01:00
if((int)$done[$appname] == 1 || empty($appname))
{
2005-11-24 12:52:14 +01:00
continue;
}
2005-11-24 12:52:14 +01:00
$varnames = $portal_oldvarnames;
$varnames[] = 'homepage_display';
foreach($varnames as $varcheck)
{
2005-11-24 12:52:14 +01:00
//echo "$appname:$varcheck=".$GLOBALS['egw_info']['user']['preferences'][$appname][$varcheck]."<br>";
$thisd = (int)$GLOBALS['egw_info']['user']['preferences'][$appname][$varcheck];
if (!$thisd && $GLOBALS['egw_info']['user']['preferences'][$appname][$varcheck]) $thisd = 1;
if($thisd>0)
{
//echo "Found $appname=$_thisd through $varcheck<br>";
break;
}
}
2005-11-24 12:52:14 +01:00
//echo "$appname: $thisd<br>";
if($thisd>0)
{
2005-11-24 12:52:14 +01:00
if((($curcol++>$numcols) || ($thisd+$lastd==3)) && $tropen==1)
{
$GLOBALS['tpl']->pfp('out','end_row');
$tropen = 0;
//$curcol = 1;
}
if(!$tropen)
{
$GLOBALS['tpl']->pfp('out','begin_row');
$tropen=1;
}
$var['tdwidth'] = ($thisd==2)?'50':'100';
$var['colspan'] = ($thisd==2)?'1':'2';
ob_start();
$var['content'] = $GLOBALS['egw']->hooks->single('home',$appname);
if (!$var['content'] || $var['content'] == 1) // content has been echoed and not returned
{
$var['content'] = ob_get_contents();
ob_end_clean();
}
$GLOBALS['tpl']->set_var($var);
$GLOBALS['tpl']->pfp('out','cell');
if(($thisd!=2 || ($thisd==2&&$lastd==2)) && $tropen)
{
$GLOBALS['tpl']->pfp('out','end_row');
$tropen = 0;
$lastd = 0;
$curcol = 1;
}
else
2005-11-24 12:52:14 +01:00
{
$lastd = $thisd;
}
$neworder[] = $appname;
}
2005-11-24 12:52:14 +01:00
$done[$appname] = 1;
}
2005-11-24 12:52:14 +01:00
$GLOBALS['tpl']->pfp('out','end_table');
2005-11-24 12:52:14 +01:00
// Update stored value of order
//_debug_array($neworder);
if(count($neworder)>0)//$GLOBALS['portal_order'])
{
2005-11-24 12:52:14 +01:00
$GLOBALS['egw']->preferences->delete('portal_order');
@reset($neworder);
while(list($app_order,$app_name) = each($neworder))
{
$app_id = $GLOBALS['egw']->applications->name2id($app_name);
//echo "neworder: $app_order=$app_id:$app_name<br>";
$GLOBALS['egw']->preferences->add('portal_order',$app_order,$app_id);
}
$GLOBALS['egw_info']['user']['preferences'] = $GLOBALS['egw']->preferences->save_repository();
}
2005-11-24 12:52:14 +01:00
//_debug_array($GLOBALS['egw_info']['user']['preferences']);
2005-11-24 12:52:14 +01:00
//$GLOBALS['egw']->common->debug_phpgw_info();
//$GLOBALS['egw']->common->debug_list_core_functions();
$GLOBALS['egw']->common->egw_footer();
?>