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 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>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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
|
|
|
|
2011-09-24 00:22:59 +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
|
2012-09-04 13:54:36 +04:00
|
|
|
if( isset( $_POST['lang'] ) ) {
|
2012-04-15 17:35:20 +04:00
|
|
|
$languageCodes=OC_L10N::findAvailableLanguages();
|
2015-02-13 15:33:20 +03:00
|
|
|
$lang = (string)$_POST['lang'];
|
2013-04-17 17:32:03 +04:00
|
|
|
if(array_search($lang, $languageCodes) or $lang === 'en') {
|
2014-12-04 18:48:07 +03:00
|
|
|
\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{
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
|
2011-06-20 16:33:02 +04:00
|
|
|
}
|