. * */ // Check if we are a user OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); OCP\JSON::callCheck(); require_once __DIR__.'/../loghandler.php'; $id = isset($_POST['id']) ? $_POST['id'] : null; if(!$id) { bailOut(OCA\Contacts\App::$l10n->t('id is not set.')); } try { OCA\Contacts\VCard::delete($id); } catch(Exception $e) { bailOut($e->getMessage()); } OCP\JSON::success(array('data' => array( 'id' => $id )));