Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settimezone.php « settings « ajax « calendar « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c639753fe2fe14f34ba59e67babf37ecb6212d64 (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
26
27
<?php
/**
 * Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

// Init owncloud
require_once('../../../../lib/base.php');

$l=new OC_L10N('calendar');

// Check if we are a user
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('calendar');

// Get data
if( isset( $_POST['timezone'] ) ){
	$timezone=$_POST['timezone'];
	OC_Preferences::setValue( OC_User::getUser(), 'calendar', 'timezone', $timezone );
	OC_JSON::success(array('data' => array( 'message' => $l->t('Timezone changed') )));
}else{
	OC_JSON::error(array('data' => array( 'message' => $l->t('Invalid request') )));
}

?>