Gravity Forms SQL Server Data Integration for Bellevue College
Wordpress plugin to send GravityForms form data to SQL Server
by Bellevue College Integration Team · github.com/bellevuecollege/gf-sqlserver-integration · website
★ 3stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/bellevuecollege/gf-sqlserver-integration/archive/refs/heads/trunk.zipDeclares an update source (bellevuecollege/gf-sqlserver-integration), so updates arrive through the plugin's own updater.
From the readme
Gravity Forms SQL Server Integration WordPress Plugin
This plugin allows for the moving of data from a submitted Gravity Forms form to SQL Server. Based on the submitted form entry, it fills out the appropriate data model and moves the form data and related transaction data to SQL Server (or, easily, an alternate external database).
The plugin currently hooks to the gformpostpaymentaction action. A data model class must exist for each form to which you want to attach SQL Server integration.
Use
Installation of the plugin adds an additional submenu titled BC SQL Server Data Integration to the settings for each individual form in Gravity Forms. On that submenu page, select the data model that maps to your form then save to update the data integration settings.
Add a new data model
- Create the new data model - create a new class file for your data model and include in the classes directory. Likely one of the existing models could serve as a template.
- Include in the main plugin file switch - in gf-sqlserver-integration.php require the PHP class file and also add the class to the switch statement that determines which data model to use.
- Add the new class name to the SQLSERV
Read the full README on GitHub →