summaryrefslogtreecommitdiffstats
path: root/apps/external/ajax/setsites.php
blob: 772863974ae4bcf708a5f04961abbf88a74974bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

/**
 * 2012 Frank Karlitschek frank@owncloud.org
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */

 
OCP\User::checkAdminUser();

$sites = array();
for ($i = 0; $i < sizeof($_POST['site_name']); $i++) {
	if (!empty($_POST['site_name'][$i]) && !empty($_POST['site_url'][$i])) {
		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
	OCP\Config::setAppValue('external', 'sites', json_encode($sites));

echo 'true';
?>