Blame view

sources/apps/calendar/ajax/settings/guesstimezone.php 733 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
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
  /**
   * Copyright (c) 2011, 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  
  OCP\JSON::checkLoggedIn();
  OCP\JSON::checkAppEnabled('calendar');
  OCP\JSON::callCheck();
  
  $l = OCP\Util::getL10N('calendar');
  
  $lat = $_POST['lat'];
  $lng = $_POST['lng'];
  
  $timezone =  OC_Geo::timezone($lat, $lng);
  
  if($timezone == OCP\Config::getUserValue(OCP\USER::getUser(), 'calendar', 'timezone')) {
  	OCP\JSON::success();
  	exit;
  }
  OCP\Config::setUserValue(OCP\USER::getUser(), 'calendar', 'timezone', $timezone);
6d9380f96   Cédric Dupont   Update sources OC...
26
27
  $message = array('message'=> $l->t('New Timezone:') . ' ' . $timezone);
  OCP\JSON::success($message);