nextcloud/apps/calendar/ajax/changeview.php

16 lines
448 B
PHP
Raw Normal View History

2011-08-12 16:29:45 +04:00
<?php
2011-09-24 00:59:24 +04:00
/**
* Copyright (c) 2011 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.
*/
2011-08-12 16:29:45 +04:00
require_once ("../../../lib/base.php");
OC_JSON::checkLoggedIn();
OC_JSON::checkAppEnabled('calendar');
2011-08-12 16:29:45 +04:00
$currentview = $_GET["v"];
OC_Preferences::setValue(OC_USER::getUser(), "calendar", "currentview", $currentview);
OC_JSON::success();
2011-09-24 00:59:24 +04:00
?>