nextcloud/settings/ajax/setlanguage.php

46 lines
1.7 KiB
PHP
Raw Normal View History

2011-06-20 16:33:02 +04:00
<?php
2015-03-26 13:44:34 +03:00
/**
* @author Bart Visscher <bartv@thisnet.nl>
* @author Christopher Schäpers <kondou@ts.unde.re>
* @author Joas Schilling <nickvergessen@owncloud.com>
2015-03-26 13:44:34 +03:00
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2016-01-12 17:02:16 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* 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/>
*
*/
2014-08-31 12:05:59 +04:00
$l = \OC::$server->getL10N('settings');
2011-06-20 16:51:33 +04:00
OC_JSON::checkLoggedIn();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
2011-06-20 16:33:02 +04:00
2012-04-15 17:35:20 +04:00
2011-06-20 16:33:02 +04:00
// Get data
if( isset( $_POST['lang'] ) ) {
$languageCodes = \OC::$server->getL10NFactory()->findAvailableLanguages();
$lang = (string)$_POST['lang'];
2013-04-17 17:32:03 +04:00
if(array_search($lang, $languageCodes) or $lang === 'en') {
\OC::$server->getConfig()->setUserValue( OC_User::getUser(), 'core', 'lang', $lang );
2012-04-15 17:35:20 +04:00
OC_JSON::success(array("data" => array( "message" => $l->t("Language changed") )));
}else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
}
2011-06-20 16:33:02 +04:00
}else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
2011-06-20 16:33:02 +04:00
}