deletecard.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * ownCloud - Addressbook
  4. *
  5. * @author Jakob Sack
  6. * @copyright 2011 Jakob Sack mail@jakobsack.de
  7. *
  8. * This library is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public
  19. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. function bailOut($msg) {
  23. OCP\JSON::error(array('data' => array('message' => $msg)));
  24. OCP\Util::writeLog('contacts','ajax/saveproperty.php: '.$msg, OCP\Util::DEBUG);
  25. exit();
  26. }
  27. // Init owncloud
  28. // Check if we are a user
  29. OCP\JSON::checkLoggedIn();
  30. OCP\JSON::checkAppEnabled('contacts');
  31. OCP\JSON::callCheck();
  32. $id = isset($_POST['id'])?$_POST['id']:null;
  33. if(!$id) {
  34. bailOut(OC_Contacts_App::$l10n->t('id is not set.'));
  35. }
  36. $card = OC_Contacts_App::getContactObject( $id );
  37. OC_Contacts_VCard::delete($id);
  38. OCP\JSON::success(array('data' => array( 'id' => $id )));