summaryrefslogtreecommitdiffstats
path: root/apps/contacts/ajax/activation.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/contacts/ajax/activation.php')
-rw-r--r--apps/contacts/ajax/activation.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/contacts/ajax/activation.php b/apps/contacts/ajax/activation.php
new file mode 100644
index 00000000000..f4a2c94a148
--- /dev/null
+++ b/apps/contacts/ajax/activation.php
@@ -0,0 +1,22 @@
+<?php
+/**
+ * Copyright (c) 2011 Thomas Tanghus <thomas@tanghus.net>
+ * Copyright (c) 2011 Bart Visscher <bartv@thisnet.nl>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+require_once ("../../../lib/base.php");
+OC_JSON::checkLoggedIn();
+OC_JSON::checkAppEnabled('contacts');
+$bookid = $_POST['bookid'];
+OC_Contacts_Addressbook::setActive($bookid, $_POST['active']);
+$book = OC_Contacts_App::getAddressbook($bookid);
+
+/* is there an OC_JSON::error() ? */
+OC_JSON::success(array(
+ 'active' => OC_Contacts_Addressbook::isActive($bookid),
+ 'bookid' => $bookid,
+ 'book' => $book,
+));