nextcloud/apps/external/ajax/setsites.php

27 lines
667 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2011, Frank Karlitschek <karlitschek@kde.org>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
2012-05-02 00:59:38 +04:00
OCP\User::checkAdminUser();
2012-07-20 22:12:36 +04:00
OCP\JSON::callCheck();
$sites = array();
for ($i = 0; $i < sizeof($_POST['site_name']); $i++) {
if (!empty($_POST['site_name'][$i]) && !empty($_POST['site_url'][$i])) {
2012-06-10 21:54:04 +04:00
array_push($sites, array(strip_tags($_POST['site_name'][$i]), strip_tags($_POST['site_url'][$i])));
}
}
if (sizeof($sites) == 0)
OC_Appconfig::deleteKey('external', 'sites');
else
2012-05-02 16:11:29 +04:00
OCP\Config::setAppValue('external', 'sites', json_encode($sites));
echo 'true';
?>