2012-08-26 19:51:01 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-02-23 13:28:53 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2012-08-26 19:51:01 +04:00
|
|
|
*
|
2015-02-23 13:28:53 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2012-08-26 19:51:01 +04:00
|
|
|
*
|
2015-02-23 13:28:53 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2012-08-26 19:51:01 +04:00
|
|
|
*
|
2015-02-23 13:28:53 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-08-26 19:51:01 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-02-23 13:28:53 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-08-26 19:51:01 +04:00
|
|
|
*
|
2015-02-23 13:28:53 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2012-08-26 19:51:01 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-12-17 17:46:57 +04:00
|
|
|
OC_Util::checkAdminUser();
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
if($_POST) {
|
2013-02-03 22:58:55 +04:00
|
|
|
// CSRF check
|
|
|
|
OCP\JSON::callCheck();
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2012-12-15 02:04:42 +04:00
|
|
|
if(isset($_POST['webdav_url'])) {
|
|
|
|
OC_CONFIG::setValue('user_webdavauth_url', strip_tags($_POST['webdav_url']));
|
|
|
|
}
|
2012-08-26 19:51:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// fill template
|
|
|
|
$tmpl = new OC_Template( 'user_webdavauth', 'settings');
|
|
|
|
$tmpl->assign( 'webdav_url', OC_Config::getValue( "user_webdavauth_url" ));
|
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|