mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
108 lines
3.1 KiB
PHP
Executable File
108 lines
3.1 KiB
PHP
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare - Calendar *
|
|
* http://www.phpgroupware.org *
|
|
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
|
|
* http://www.radix.net/~cknudsen *
|
|
* Modified by Mark Peters <skeeter@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. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class bopreferences
|
|
{
|
|
var $public_functions = Array(
|
|
'preferences' => True
|
|
);
|
|
|
|
var $prefs;
|
|
var $debug = False;
|
|
|
|
function bopreferences()
|
|
{
|
|
$GLOBALS['phpgw']->nextmatchs = CreateObject('phpgwapi.nextmatchs');
|
|
$this->prefs['calendar'] = $GLOBALS['phpgw_info']['user']['preferences']['calendar'];
|
|
}
|
|
|
|
function preferences()
|
|
{
|
|
if (get_var('submit',Array('POST')))
|
|
{
|
|
$prefs = get_var('prefs',Array('POST'));
|
|
$GLOBALS['phpgw']->preferences->read_repository();
|
|
|
|
$pref_list = Array(
|
|
'weekdaystarts',
|
|
'workdaystarts',
|
|
'workdayends',
|
|
'defaultcalendar',
|
|
'defaultfilter',
|
|
'interval',
|
|
'planner_intervals_per_day',
|
|
'planner_start_with_group'
|
|
);
|
|
|
|
for($i=0;$i<count($pref_list);$i++)
|
|
{
|
|
$GLOBALS['phpgw']->preferences->add('calendar',$pref_list[$i],$prefs[$pref_list[$i]]);
|
|
}
|
|
|
|
$pref_list = Array(
|
|
'send_updates',
|
|
'send_extra'
|
|
);
|
|
|
|
if($prefs[$pref_list[1] == True)
|
|
{
|
|
$GLOBALS['phpgw']->preferences->add('calendar',$pref_list[1],$prefs[$pref_list[1]]);
|
|
if($prefs[$pref_list[2] == True)
|
|
{
|
|
$GLOBALS['phpgw']->preferences->add('calendar',$pref_list[2],$prefs[$pref_list[2]]);
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['phpgw']->preferences->delete('calendar',$pref_list[2]);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['phpgw']->preferences->delete('calendar',$pref_list[1]);
|
|
$GLOBALS['phpgw']->preferences->delete('calendar',$pref_list[2]);
|
|
}
|
|
|
|
$pref_list = Array(
|
|
'mainscreen_showevents',
|
|
'display_status',
|
|
'default_private',
|
|
'display_minicals',
|
|
'print_black_white',
|
|
'weekdays_only'
|
|
);
|
|
|
|
for($i=0;$i<count($pref_list);$i++)
|
|
{
|
|
if ($prefs[$pref_list[$i]] == True)
|
|
{
|
|
$GLOBALS['phpgw']->preferences->add('calendar',$pref_list[$i],$prefs[$pref_list[$i]]);
|
|
}
|
|
else
|
|
{
|
|
$GLOBALS['phpgw']->preferences->delete('calendar',$pref_list[$i]);
|
|
}
|
|
}
|
|
|
|
$GLOBALS['phpgw']->preferences->save_repository(True);
|
|
|
|
Header('Location: '.$GLOBALS['phpgw']->link('/preferences/index.php'));
|
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
?>
|