blob: 84bad93c9282aa0aaeebb306caebe35d266d67d3 (
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$
* @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' );
}
}
}
}
?>
|