. * */ // 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(OC_Contacts_App::$l10n->t('id is not set.')); } try { OC_Contacts_VCard::delete($id); } catch(Exception $e) { bailOut($e->getMessage()); } OCP\JSON::success(array('data' => array( 'id' => $id )));