convert existing wordpress salesforce plugin from SOAP to REST

Job ID: 33117250

Budget: $30 – $250 USD

I developed a wordpress plugin a while ago to connect to and update salesforce when a gravityforms form is submitted. However, it's using a SOAP version that won't be supported after May. I was planning to convert it to REST but don't have the time. Most of the work is already done. The SOAP part just needs to be changed to REST. In the file I've uploaded I stripped out most of the unnecessary stuff which I can put back in later. Hopefully it's somewhat clear what I'm trying to accomplish.

Users can create campaigns and make donations to those campaigns. Both campaign creation and donation events are triggered by a gravityforms submission:

add_action('DROP_campaignCreated', array($this, 'DROPSalesforcePlugin_createNewCampaign')); add_action("gform_after_submission_10", array($this, "dropSalesforceBridge_makeDonation"), 11, 5);

However for testing a development these could just be triggered when the theme is loaded or on one of the other wordpress event hooks. I put stub data in for both data types so all this should be working as is.
Related categories: PHP WordPress Salesforce.com