blob: 7205ac4543a24786861069bf4163cd37eab318dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* @version $Header: /cvsroot/bitweaver/_bit_calendar/user_preferences_inc.php,v 1.5 2009/10/01 14:16:58 wjames5 Exp $
* @package calendar
* @subpackage functions
*
* @copyright Copyright (c) 2004-2006, bitweaver.org
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
*/
/**
* Setup
*/
if( $gBitSystem->isFeatureActive('calendar_user_prefs') ) {
include_once( CALENDAR_PKG_PATH.'admin/admin_calendar_inc.php' );
if( !empty( $_REQUEST['calendar_submit'] ) ) {
foreach( $calendarValues as $item ) {
if( !empty( $_REQUEST[$item] ) ) {
$editUser->storePreference( $item, $_REQUEST[$item], 'calendar' );
}
}
}
}
?>
|