From 29a9559fa9df7f08947dabbba270bd97c3419d54 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Tue, 3 Jul 2012 13:43:18 +0200 Subject: some work on calendar import dialog --- apps/calendar/ajax/import/calendarcheck.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/calendar/ajax/import/calendarcheck.php (limited to 'apps/calendar/ajax/import/calendarcheck.php') diff --git a/apps/calendar/ajax/import/calendarcheck.php b/apps/calendar/ajax/import/calendarcheck.php new file mode 100644 index 00000000000..a91bab70573 --- /dev/null +++ b/apps/calendar/ajax/import/calendarcheck.php @@ -0,0 +1,18 @@ + + * 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(); \ No newline at end of file -- cgit v1.2.3