nextcloud/apps/calendar/ajax/settings/getfirstday.php

11 lines
380 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 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.
*/
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2012-05-02 17:54:34 +04:00
$firstday = OCP\Config::getUserValue( OCP\USER::getUser(), 'calendar', 'firstday', 'mo');
2012-06-16 11:48:07 +04:00
OCP\JSON::encodedPrint(array('firstday' => $firstday));