Gravity Forms (WordPress-plugin): verschil tussen versies

Uit De Vliegende Brigade
Naar navigatie springen Naar zoeken springen
 
(50 tussenliggende versies door dezelfde gebruiker niet weergegeven)
Regel 1: Regel 1:
 
Sinds 2020 is ''Gravity Forms'' m'n standaard formulieren-plugin, op advies van een specialist. Ik denk dat ik 'm ok vind. De belangrijkste dingen gaan heel soepel. Waarschijnlijk zijn het de ''nag-screens'' om maar de betaalde versie te kopen, waar ik het meeste moeite mee heb. En dat het de complete backend-interface van WordPress overneemt. Verder is-ie prima.
 
Sinds 2020 is ''Gravity Forms'' m'n standaard formulieren-plugin, op advies van een specialist. Ik denk dat ik 'm ok vind. De belangrijkste dingen gaan heel soepel. Waarschijnlijk zijn het de ''nag-screens'' om maar de betaalde versie te kopen, waar ik het meeste moeite mee heb. En dat het de complete backend-interface van WordPress overneemt. Verder is-ie prima.
  
== Installatie WP-CLI-add-on ==
+
Dit artikel gaat tot op heden (okt. 2021) vrijwel uitsluitend over de WP-CLI-commando's om Gravity Forms en bijbehorende formulieren te beheren.
  
Standaard ondersteunt Gravity Forms niet de WordPress Command Line Interface. Daar bestaat een gratis add-on voor. Die moet je apart installeren:
+
== Licensering ==
  
<pre>
+
Het is een betaalde plugin. Zonder licentie doet-ie nix.
wp plugin install gravityformscli --activate
 
  
Installing Gravity Forms CLI Add-On (1.4)
+
* Als ik sites kloon, is de gekloonde licentie ok - Itt. tot een andere plugin (naam vergeten) waarbij de licentie URL-afhankelijk was
Downloading installation package from https://downloads.wordpress.org/plugin/gravityformscli.1.4.zip...
+
* Als ik alleen de plugin kopiëer en plak, is de licentie niet ok.
Unpacking the package...
 
Installing the plugin...
 
Plugin installed successfully.
 
Activating 'gravityformscli'...
 
Plugin 'gravityformscli' activated.
 
Success: Installed 1 of 1 plugins.
 
</pre>
 
  
Activeren:
+
== WP-CLI ==
  
<code>
+
=== Installation ===
wp plugin install gravityformscli --activate
 
</code>
 
  
== wp gf ==
+
''Gravity Forms'' has quite a library of ''WP-CLI'' commands, but these need to be separately installed as a plugin:
  
 
<pre>
 
<pre>
$ wp help gf
+
wp plugin install gravityformscli --activate
 
 
NAME
 
 
 
  wp gf
 
 
 
DESCRIPTION
 
 
 
  Manage Gravity Forms.
 
 
 
SYNOPSIS
 
 
 
  wp gf <command>
 
 
 
SUBCOMMANDS
 
 
 
  check_update      Checks for available updates for Gravity Forms or a Gravity Forms official add-on.
 
  entry            Manage Gravity Forms Entries.
 
  field            Manage Gravity Forms Form Fields.
 
  form              Manage Gravity Forms.
 
  install           Installs Gravity Forms or a Gravity Forms official add-on.
 
  license          Manage the Gravity Forms License Key.
 
  notification      Manage Gravity Forms Notifications.
 
  setup            Runs the setup for Gravity Forms or a Gravity Forms official add-on.
 
  tool              Misc Gravity Forms Tools.
 
  update            Updates Gravity Forms or a Gravity Forms official add-on.
 
  version          Returns the version of Gravity Forms.
 
 
</pre>
 
</pre>
  
=== wp gf check_update ===
+
=== Disable or enable a form? ===
 
 
=== wp gf entry ===
 
 
 
<pre>
 
$ wp help gf entry
 
 
 
NAME
 
  
  wp gf entry
+
I have the impression that you cannot disable or enable a form through a dedicated WP-CLI command.
  
DESCRIPTION
+
Example using SQL:
 
 
  Manage Gravity Forms Entries.
 
 
 
SYNOPSIS
 
 
 
  wp gf entry <command>
 
 
 
SUBCOMMANDS
 
 
 
  create            Creates a new entry from either a JSON string with the raw entry or from field-value pairs.
 
  delete            Deletes an entry.
 
  duplicate        Duplicates an entry
 
  edit              Launch system editor to edit the JSON representation of the Entry.
 
  export            Exports entries.
 
  get              Returns a JSON representation of an entry.
 
  import            Imports entries.
 
  list              Displays a list of entries.
 
  notification      Send Gravity Forms Notifications.
 
  update            Updates an entry.
 
</pre>
 
 
 
=== wp gf entry delete ===
 
  
 
<pre>
 
<pre>
$ wp help gf entry delete
+
cd $site_path
 
+
sql="update wp_gf_form set is_active=0 where id=1"
NAME
+
wp db query "$sql"
 
 
  wp gf entry delete
 
 
 
DESCRIPTION
 
 
 
  Deletes an entry.
 
 
 
SYNOPSIS
 
 
 
  wp gf entry delete <entry-id>... [--force]
 
 
 
 
</pre>
 
</pre>
  
Met de Boolean optie <code>--force</code> worden entries direct verwijderd, ipv. verplaatst te worden naar de prullenbak.
+
== Database-model ==
 
 
Voorbeelden:
 
 
 
<pre>
 
# Delete a form entry
 
########################################
 
#
 
# Delete - Don't move it to trash
 
#
 
wp gf entry list 1 --format="ids"
 
 
 
1921 1920 1918 1909 1903 1898 1897 1896 1893 1889 1885 1884 1883 1882 1877 1876 1875 1867 1866 1863^C
 
 
 
$ wp gf entry delete --force 1921
 
 
 
Success: Deleted entry 1921
 
  
 +
=== Basic form settings - wp_gf_form ===
  
# Trying out wildcard * to delete all
+
Basic form settings are stored in table <code>wp_gf_form</code>. Example:
########################################
 
#
 
# Some unexpected behaviour:
 
#
 
wp gf entry delete *
 
 
 
 
 
Error: Entry with id dvb not found
 
Error: Entry with id favicon.ico not found
 
Error: Entry with id help.txt not found
 
Error: Entry with id index.php not found
 
Error: Entry with id license.txt not found
 
Error: Entry with id list.txt not found
 
Error: Entry with id login.txt not found
 
Error: Entry with id malcare-waf.php not found
 
Error: Entry with id order-ids.txt not found
 
Error: Entry with id order_list.txt not found
 
Error: Entry with id readme.html not found
 
Error: Entry with id robots.txt not found
 
Error: Entry with id text2.txt not found
 
Error: Entry with id text.txt not found
 
Error: Entry with id wp not found
 
Error: Entry with id wp-activate.php not found
 
Error: Entry with id wp-admin not found
 
Error: Entry with id wp-blog-header.php not found
 
Error: Entry with id wp-comments-post.php not found
 
Error: Entry with id wp-config.php not found
 
Error: Entry with id wp-config-sample.php not found
 
Error: Entry with id wp-content not found
 
Error: Entry with id wp-cron.php not found
 
Error: Entry with id wp-includes not found
 
Error: Entry with id wp-links-opml.php not found
 
Error: Entry with id wp-load.php not found
 
Error: Entry with id wp-login.php not found
 
Error: Entry with id wp-mail.php not found
 
Error: Entry with id wp-salt.php not found
 
Error: Entry with id wp-settings.php not found
 
Error: Entry with id wp-signup.php not found
 
Error: Entry with id wp-trackback.php not found
 
Error: Entry with id xargs not found
 
Error: Entry with id xmlrpc.php not found
 
 
 
 
 
# "--all" to delete all? Nope
 
########################################
 
#
 
wp gf entry delete --all
 
 
 
usage: wp gf entry delete <entry-id>... [--force]
 
 
 
 
 
# No argument to delete all? Nope
 
########################################
 
#
 
wp gf entry delete
 
 
 
usage: wp gf entry delete <entry-id>... [--force]
 
 
 
 
 
# Delete all entries form 1-3
 
########################################
 
#
 
wp gf entry delete --force $(wp gf entry list 1 --format="ids" --page_size=100000)
 
wp gf entry delete --force $(wp gf entry list 2 --format="ids" --page_size=100000)
 
wp gf entry delete --force $(wp gf entry list 3 --format="ids" --page_size=100000)
 
</pre>
 
 
 
=== wp gf entry list ===
 
 
 
<pre>
 
$ wp help gf entry list
 
 
 
NAME
 
 
 
  wp gf entry list
 
 
 
DESCRIPTION
 
 
 
  Displays a list of entries.
 
 
 
SYNOPSIS
 
 
 
  wp gf entry list <form-id> [--status=<status>] [--format=<format>] [--page_size=<page_size>] [--offset=<offset>]
 
</pre>
 
 
 
'''--format'''
 
 
 
Mogelijke waardes:
 
 
 
* <code>table</code>
 
* <code>csv</code>
 
* <code>json</code>
 
* <code>count</code>
 
* <code>ids</code> - Deze optie vind je niet snel terug in de documentatie.
 
 
 
'''-page_size'''
 
 
 
Standaard worden er 20 entries weergegeven. Met de parameter <code>--page_size</code> kun je dit aanpassen. Ik heb dit getest op formulieren met bijna 900 entries, en dat ging prima. Er lijkt vooralsnog geen bovengrens te zijn.
 
 
 
Voorbeelden:
 
  
 
<pre>
 
<pre>
# Returns number of entries for form 1
+
$ select * from wp_gf_form;
########################################
 
#
 
wp gf entry list 1 --format="count"
 
 
 
 
 
# Return first 20 entry id's form 1
 
########################################
 
#
 
# The option --format="ids" is hardly mentioned on their help page https://docs.gravityforms.com/managing-entries
 
# and completely not on the inline help, eventhough it's crucial for me to automatically delete entries
 
#
 
wp gf entry list 1 --format="ids"
 
 
 
  
# Return all entry id's form 1
+
+----+----------------+---------------------+--------------+-----------+----------+
########################################
+
| id | title          | date_created        | date_updated | is_active | is_trash |
#
+
+----+----------------+---------------------+--------------+-----------+----------+
wp gf entry list 1 --format="ids" --page_size=100000
+
|  1 | Contact form  | 2019-08-05 08:38:28 | NULL        |        0 |        0 |
 +
|  3 | Selection Tool | 2020-12-23 09:01:02 | NULL        |        1 |        0 |
 +
+----+----------------+---------------------+--------------+-----------+----------+
 
</pre>
 
</pre>
  
=== wp gf field ===
+
Fields:
  
 
<pre>
 
<pre>
$ wp help gf field
+
* id            MEDIUMINT(10)   PK   NN   UN   AI
 
+
* title          VARCHAR(150)         NN
NAME
+
* date_created   DATETIME            NN
 
+
* data_updated   DATETIME                            Default: NULL
   wp gf field
+
* is_active      TINYINT(10)          NN            Default: 1
 
+
* is_trash      TINYINT(10)          NN            Default: 0
DESCRIPTION
 
 
 
   Manage Gravity Forms Form Fields.
 
 
 
SYNOPSIS
 
 
 
   wp gf field <command>
 
 
 
SUBCOMMANDS
 
 
 
   create        Creates a field and adds it to a form.
 
  delete         Deletes a field.
 
  duplicate      Duplicates a field.
 
   edit          Launch system editor to edit the Field configuration.
 
   get            Returns the JSON representation of a field.
 
  list          Displays a list of fields for a form.
 
  update        Updates a field.  If it doesn't exist, creates it.
 
 
</pre>
 
</pre>
  
=== wp gf field create ===
+
=== Form definitions - wp_gf_form_meta ===
=== wp gf field delete ===
 
=== wp gf field duplicate ===
 
=== wp gf field edit ===
 
=== wp gf field get ===
 
=== wp gf field list ===
 
 
 
<pre>
 
$ wp help gf field list
 
  
NAME
+
Volledige definities van formulieren vind je in tabel <code>wp_gf_form_meta</code>. Ik denk dat het JSON-code is. Voordeel boven reguliere ''serialised data'': Het aantal bytes per veld is niet vastgelegd. Je kunt het dus veel gemakkelijker zelf bewerken. De verschillende kolommen:
  
  wp gf field list
+
* <code>form_id</code>: Dezelfde formulier-ID als via de WP-CLI
 +
* <code>display_meta</code>: Lijkt dezelfde formulierdefinitie te zijn als die je krijgt via WP-CLI
 +
* <code>entries_grid_meta</code>: Onduidelijke serialised data - Heeft ogenschijnlijk gelukkig niets te maken met formulier zelf
 +
* <code>confirmations</code>: Complete definities van verzend-bevestigingen
 +
* <code>notifications</code>: Complete definities van de notificatie-emails die naar beheerders wordt gestuurd.
  
DESCRIPTION
+
== ReCAPTCHA add-on ==
  
  Displays a list of fields for a form.
+
Google's ''ReCAPTCHA'' can be integrated into forms:
  
SYNOPSIS
+
* wp_admin » Forms » Settings » ReCAPTCHA
 +
* https://www.google.com/recaptcha/about/
 +
* Using Google's reCAPTCHAs for Gravity Forms, requires the ''Gravity Forms reCAPTCHA Add-On'': https://www.gravityforms.com/add-ons/recaptcha/
 +
* This is not the same as https://wordpress.org/plugins/gravity-forms-zero-spam/
 +
* This add-on cannot be installed through <code>wp plugin install</code>: See <code>wp plugin search "gravity forms recaptcha" --per-page=100 | grep gravity</code>, https://wordpress.org/plugins/search/gravity+forms+recaptcha/ or try it yourself: <code>wp plugin install gravityformsrecaptcha</code>
 +
* Supposingly, it could be installed through <code>wp gf install gravityformsrecaptcha</code>. I suspect you need to always supply the key for Gravity Forms itself (not for the add-on, if there is such a thing). See [[Wp gf install (WP-CLI)]] for details.
  
  wp gf field list <form-id> [--format=<output-format>]
+
After installation, the add-on does appear amongst plugins:
</pre>
 
 
 
''' Voorbeeld '''
 
  
 
<pre>
 
<pre>
$ wp gf field list 2
+
$ wp plugin list | grep gravity
  
+----+------------+-------------------------+
+
gravityforms         active none 2.6.7
| id | type      | label                  |
+
gravityformscli         active none 1.4
+----+------------+-------------------------+
+
gravityformsrecaptcha active none 1.1
| 2 | text      | Naam                    |
 
| 5  | email      | E-mailadres            |
 
| 16 | text      | Telefoonnummer          |
 
| 11 | textarea  | Vraag of opmerking      |
 
| 22 | fileupload | Foto                    |
 
| 15 | html      | HTML-blok              |
 
+----+------------+-------------------------+
 
 
</pre>
 
</pre>
  
=== wp gf field update ===
+
== See also ==
 
 
<pre>
 
$ wp help gf field update
 
 
 
NAME
 
 
 
  wp gf field update
 
 
 
DESCRIPTION
 
 
 
  Updates a field.  If it doesn't exist, creates it.
 
 
 
SYNOPSIS
 
 
 
  wp gf field update <form-id> <field-id> [--<field>=<value>] [--field-json=<field-json>]
 
</pre>
 
 
 
''' Voorbeeld '''
 
 
 
<pre>
 
$ wp gf field list 2  # See fields of form with ID=2
 
 
 
+----+------------+-------------------------+
 
| id | type      | label                  |
 
+----+------------+-------------------------+
 
| 2  | text      | Naam                    |
 
| 5  | email      | E-mailadres            |
 
| 16 | text      | Telefoonnummer          |
 
| 11 | textarea  | Vraag of opmerking      |
 
+----+------------+-------------------------+
 
 
 
 
 
$ wp gf field update 2 2 --label="Name"
 
 
 
Success: Field ID: 2 updated
 
 
 
 
 
$ wp gf field list 2
 
 
 
+----+------------+-------------------------+
 
| id | type      | label                  |
 
+----+------------+-------------------------+
 
| 2  | text      | Name                    |
 
| 5  | email      | E-mailadres            |
 
| 16 | text      | Telefoonnummer          |
 
| 11 | textarea  | Vraag of opmerking      |
 
+----+------------+-------------------------+
 
</pre>
 
 
 
=== wp gf form ===
 
 
 
<pre>
 
$ wp help gf form
 
 
 
NAME
 
 
 
  wp gf form
 
 
 
DESCRIPTION
 
 
 
  Manage Gravity Forms.
 
 
 
SYNOPSIS
 
 
 
  wp gf form <command>
 
 
 
SUBCOMMANDS
 
 
 
  create            Creates a new form.
 
  delete            Deletes a form.
 
  duplicate        Duplicates a form.
 
  edit              Launch system editor to edit the Form configuration.
 
  export            Exports forms to a Gravity Forms Form export file.
 
  field            Manage Gravity Forms Form Fields.
 
  form_list        Lists the forms with entry count and view counts.
 
  get              Returns the form JSON.
 
  import            Imports forms from a Gravity Forms Form export file.
 
  notification      Manage Gravity Forms Notifications.
 
  update            Updates a form.
 
</pre>
 
 
 
=== wp gf form create ===
 
=== wp gf form delete ===
 
=== wp gf form edit ===
 
 
 
De helptekst is niet behulpzaam. Dit is de syntaxis:
 
 
 
<code>
 
wp gf form edit <form-id>
 
</code>
 
 
 
Vervolgens start een editor om een JSON-representatie van het formulier te bewerken.
 
 
 
=== wp gf form export ===
 
=== wp gf form field ===
 
=== wp gf form form_list ===
 
 
 
Zie <code>wp gf form list</code>. Dat is welliswaar een alias voor dit commando, maar ik vind 'm veel intuïtiever.
 
 
 
=== wp gf form get ===
 
 
 
<pre>
 
$ wp help gf form get
 
 
 
NAME
 
 
 
  wp gf form get
 
 
 
DESCRIPTION
 
 
 
  Returns the form JSON.
 
 
 
SYNOPSIS
 
 
 
  wp gf form get <form-id>
 
 
 
ALIAS
 
 
 
  get-form
 
</pre>
 
 
 
=== wp gf form list ===
 
 
 
Dit is een alias voor <code>wp gf form form_list</code>. Ik vind deze naam veel logischer dan <code>form_list</code>
 
 
 
<pre>
 
$ wp help gf form list
 
 
 
NAME
 
 
 
  wp gf form form_list
 
 
 
DESCRIPTION
 
 
 
  Lists the forms with entry count and view counts.
 
 
 
SYNOPSIS
 
 
 
  wp gf form form_list [--active] [--trash] [--sort_column=<sort_column>] [--sort_dir=<sort_dir>] [--format=<format>]
 
 
 
ALIAS
 
 
 
  list
 
</pre>
 
 
 
Voorbeeld:
 
 
 
<pre>
 
$ wp gf form form_list
 
 
 
+----+---------------------------+---------------------+-----------+-------------+------------+
 
| id | title                    | date_created        | is_active | entry_count | view_count |
 
+----+---------------------------+---------------------+-----------+-------------+------------+
 
| 1  | Contactformulier          | 2019-08-05 08:38:28 | 1        | 0          | 510        |
 
| 2  | Informatie formulier      | 2019-08-07 13:34:11 | 1        | 0          | 3956606    |
 
| 3  | Informatie formulier 2020 | 2020-12-23 09:01:02 | 1        | 0          | 493        |
 
+----+---------------------------+---------------------+-----------+-------------+------------+
 
</pre>
 
 
 
=== wp gf form import ===
 
=== wp gf form notification ===
 
=== wp gf form update ===
 
 
 
Ik weet niet waar dit commando voort dient. De helptekst is niet behulpzaam. Syntaxis:
 
 
 
<pre>
 
wp gf form update <form-id> <--form-json | --file>
 
</pre>
 
 
 
LET OP! Dit commando verwijdert het formulier, zonder vantevoren te waarschuwen:
 
 
 
<pre>
 
$ wp gf form update 1 --form-json=1
 
 
 
PHP Warning:  Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityformscli/includes/class-gf-cli-form.php on line 554
 
Warning: Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityformscli/includes/class-gf-cli-form.php on line 554
 
PHP Warning:  Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityformscli/includes/class-gf-cli-form.php on line 558
 
Warning: Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityformscli/includes/class-gf-cli-form.php on line 558
 
PHP Warning:  Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityforms/includes/api.php on line 222
 
Warning: Cannot use a scalar value as an array in /var/www/example.com/wp-content/plugins/gravityforms/includes/api.php on line 222
 
Success: Form updated successfully
 
</pre>
 
 
 
=== wp gf install ===
 
=== wp gf license ===
 
=== wp gf notification ===
 
=== wp gf setup ===
 
=== wp gf tool ===
 
=== wp gf update ===
 
=== wp gf version ===
 
 
 
== Zie ook ==
 
 
 
* [[WP-CLI (commando's)]]
 
 
 
== Bronnen ==
 
  
* https://docs.gravityforms.com/category/add-ons-gravity-forms/ - Een indrukwekkende lijst van ''add-ons''
+
* [[Wp gf (WP-CLI) | wp gf]]
* https://docs.gravityforms.com/category/add-ons-gravity-forms/wp-cli-add-on/ - WP-CLI Add-on
+
* [[Wp gf install (WP-CLI)]]

Huidige versie van 31 okt 2022 om 12:43

Sinds 2020 is Gravity Forms m'n standaard formulieren-plugin, op advies van een specialist. Ik denk dat ik 'm ok vind. De belangrijkste dingen gaan heel soepel. Waarschijnlijk zijn het de nag-screens om maar de betaalde versie te kopen, waar ik het meeste moeite mee heb. En dat het de complete backend-interface van WordPress overneemt. Verder is-ie prima.

Dit artikel gaat tot op heden (okt. 2021) vrijwel uitsluitend over de WP-CLI-commando's om Gravity Forms en bijbehorende formulieren te beheren.

Licensering

Het is een betaalde plugin. Zonder licentie doet-ie nix.

  • Als ik sites kloon, is de gekloonde licentie ok - Itt. tot een andere plugin (naam vergeten) waarbij de licentie URL-afhankelijk was
  • Als ik alleen de plugin kopiëer en plak, is de licentie niet ok.

WP-CLI

Installation

Gravity Forms has quite a library of WP-CLI commands, but these need to be separately installed as a plugin:

wp plugin install gravityformscli --activate

Disable or enable a form?

I have the impression that you cannot disable or enable a form through a dedicated WP-CLI command.

Example using SQL:

cd $site_path
sql="update wp_gf_form set is_active=0 where id=1"
wp db query "$sql"

Database-model

Basic form settings - wp_gf_form

Basic form settings are stored in table wp_gf_form. Example:

$ select * from wp_gf_form;

+----+----------------+---------------------+--------------+-----------+----------+
| id | title          | date_created        | date_updated | is_active | is_trash |
+----+----------------+---------------------+--------------+-----------+----------+
|  1 | Contact form   | 2019-08-05 08:38:28 | NULL         |         0 |        0 |
|  3 | Selection Tool | 2020-12-23 09:01:02 | NULL         |         1 |        0 |
+----+----------------+---------------------+--------------+-----------+----------+

Fields:

* id             MEDIUMINT(10)   PK   NN   UN   AI
* title          VARCHAR(150)         NN
* date_created   DATETIME             NN
* data_updated   DATETIME                            Default: NULL
* is_active      TINYINT(10)          NN             Default: 1
* is_trash       TINYINT(10)          NN             Default: 0

Form definitions - wp_gf_form_meta

Volledige definities van formulieren vind je in tabel wp_gf_form_meta. Ik denk dat het JSON-code is. Voordeel boven reguliere serialised data: Het aantal bytes per veld is niet vastgelegd. Je kunt het dus veel gemakkelijker zelf bewerken. De verschillende kolommen:

  • form_id: Dezelfde formulier-ID als via de WP-CLI
  • display_meta: Lijkt dezelfde formulierdefinitie te zijn als die je krijgt via WP-CLI
  • entries_grid_meta: Onduidelijke serialised data - Heeft ogenschijnlijk gelukkig niets te maken met formulier zelf
  • confirmations: Complete definities van verzend-bevestigingen
  • notifications: Complete definities van de notificatie-emails die naar beheerders wordt gestuurd.

ReCAPTCHA add-on

Google's ReCAPTCHA can be integrated into forms:

After installation, the add-on does appear amongst plugins:

$ wp plugin list | grep gravity

gravityforms	        active	none	2.6.7
gravityformscli	        active	none	1.4
gravityformsrecaptcha	active	none	1.1

See also