. * */ // Check if we are a user OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); OCP\JSON::callCheck(); require_once 'loghandler.php'; $id = isset($_POST['id'])?$_POST['id']:null; if(!$id) { bailOut(OC_Contacts_App::$l10n->t('id is not set.')); } $card = OC_Contacts_App::getContactObject( $id ); OC_Contacts_VCard::delete($id); OCP\JSON::success(array('data' => array( 'id' => $id )));