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: abe14bd0ec7d411ec4428c820dbc2a809335ada8 (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
 

$l=OC_L10N::get('calendar');

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

// Get data
if( isset( $_POST['timezone'] ) ){
	$timezone=$_POST['timezone'];
	OCP\Config::setUserValue( OCP\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') )));
}

?>