summaryrefslogtreecommitdiffstats
path: root/apps/calendar/ajax/import/calendarcheck.php
blob: a91bab7057375255ed636fba22847b2afb397047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
 * Copyright (c) 2012 Georg Ehrke <ownclouddev at georgswebsite dot de>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */
OCP\JSON::checkLoggedIn();
OCP\App::checkAppEnabled('calendar');
$calname = strip_tags($_POST['calname']);
$calendars = OC_Calendar_Calendar::allCalendars(OCP\User::getUser());
foreach($calendars as $calendar){
	if($calendar['displayname'] == $calname){
		OCP\JSON::success(array('message'=>'exists'));
		exit;
	}
}
OCP\JSON::error();