diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-07-03 13:43:18 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-07-03 13:43:18 +0200 |
commit | 29a9559fa9df7f08947dabbba270bd97c3419d54 (patch) | |
tree | 74f7504e4b808d30eff24ffc8ede1bdd81bc1f97 /apps/calendar/ajax/import/calendarcheck.php | |
parent | e89a0949c45972aa45b8eed02b498f8487685330 (diff) | |
download | nextcloud-server-29a9559fa9df7f08947dabbba270bd97c3419d54.tar.gz nextcloud-server-29a9559fa9df7f08947dabbba270bd97c3419d54.zip |
some work on calendar import dialog
Diffstat (limited to 'apps/calendar/ajax/import/calendarcheck.php')
-rw-r--r-- | apps/calendar/ajax/import/calendarcheck.php | 18 |
1 files changed, 18 insertions, 0 deletions
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 @@ +<?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();
\ No newline at end of file |