diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-02 00:01:48 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-02 00:02:07 +0200 |
commit | f159f607deff03201fb3b35ce1d01ef532d918fe (patch) | |
tree | 35c096de39f19eda3e4a9f860965726e8cd7bcb1 /apps/contacts/ajax | |
parent | a8faae4f421ab8b85c2bd88b9617efb191c3ff62 (diff) | |
download | nextcloud-server-f159f607deff03201fb3b35ce1d01ef532d918fe.tar.gz nextcloud-server-f159f607deff03201fb3b35ce1d01ef532d918fe.zip |
And then the missing files ;)
Diffstat (limited to 'apps/contacts/ajax')
-rw-r--r-- | apps/contacts/ajax/addressbook/activate.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/contacts/ajax/addressbook/activate.php b/apps/contacts/ajax/addressbook/activate.php new file mode 100644 index 00000000000..a8dec21dac7 --- /dev/null +++ b/apps/contacts/ajax/addressbook/activate.php @@ -0,0 +1,32 @@ +<?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. + */ + + +OCP\JSON::checkLoggedIn(); +OCP\JSON::checkAppEnabled('contacts'); +OCP\JSON::callCheck(); + +$id = $_POST['id']; +$book = OC_Contacts_App::getAddressbook($id);// is owner access check + +if(!OC_Contacts_Addressbook::setActive($id, $_POST['active'])) { + OCP\Util::writeLog('contacts', + 'ajax/activation.php: Error activating addressbook: '. $id, + OCP\Util::ERROR); + OCP\JSON::error(array( + 'data' => array( + 'message' => OC_Contacts_App::$l10n->t('Error (de)activating addressbook.')))); + exit(); +} + +OCP\JSON::success(array( + 'active' => OC_Contacts_Addressbook::isActive($id), + 'id' => $id, + 'addressbook' => $book, +)); |