Event Tracking for Gravity Forms - Version 1.5.2

Version Description

  • Hotfix for PHP strict standards warning
Download this release

Release Info

Developer nmarks
Plugin Icon 128x128 Event Tracking for Gravity Forms
Version 1.5.2
Comparing to
See all releases

Code changes from version 1.5.1 to 1.5.2

README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: nmarks
3
  Tags: gravity forms, google analytics, event tracking
4
  Requires at least: 3.5.2
5
  Tested up to: 4.1
6
- Stable tag: 1.5.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -80,6 +80,9 @@ Check out the documentation on [github](https://github.com/nathanmarks/wordpress
80
 
81
  == Changelog ==
82
 
 
 
 
83
  = 1.5.0 =
84
  * Moved the form specific settings to their own tab.
85
  * Re-structured the plugin code to fall in line with the official Gravity Forms plugins.
3
  Tags: gravity forms, google analytics, event tracking
4
  Requires at least: 3.5.2
5
  Tested up to: 4.1
6
+ Stable tag: 1.5.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
80
 
81
  == Changelog ==
82
 
83
+ = 1.5.2 =
84
+ * Hotfix for PHP strict standards warning
85
+
86
  = 1.5.0 =
87
  * Moved the form specific settings to their own tab.
88
  * Re-structured the plugin code to fall in line with the official Gravity Forms plugins.
gravity-forms-event-tracking.php CHANGED
@@ -10,7 +10,7 @@
10
  * Plugin Name: Gravity Forms Google Analytics Event Tracking
11
  * Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
12
  * Description: Add Google Analytics event tracking to your Gravity Forms with ease.
13
- * Version: 1.5.1
14
  * Author: Nathan Marks
15
  * Author URI: http://www.nvisionsolutions.ca
16
  * Text Domain: gravity-forms-google-analytics-event-tracking
10
  * Plugin Name: Gravity Forms Google Analytics Event Tracking
11
  * Plugin URI: https://wordpress.org/plugins/gravity-forms-google-analytics-event-tracking/
12
  * Description: Add Google Analytics event tracking to your Gravity Forms with ease.
13
+ * Version: 1.5.2
14
  * Author: Nathan Marks
15
  * Author URI: http://www.nvisionsolutions.ca
16
  * Text Domain: gravity-forms-google-analytics-event-tracking
includes/class-gravity-forms-event-tracking.php CHANGED
@@ -13,7 +13,7 @@
13
  GFForms::include_addon_framework();
14
 
15
  class Gravity_Forms_Event_Tracking extends GFAddOn {
16
- protected $_version = "1.5.1";
17
  protected $_min_gravityforms_version = "1.8.20";
18
 
19
  /**
@@ -328,7 +328,7 @@ class Gravity_Forms_Event_Tracking extends GFAddOn {
328
  * @since 1.5.0
329
  * @return array Array of form settings
330
  */
331
- public function form_settings_fields() {
332
  return array(
333
  array(
334
  "title" => __( 'Event Tracking Settings', $this->_text_domain ),
13
  GFForms::include_addon_framework();
14
 
15
  class Gravity_Forms_Event_Tracking extends GFAddOn {
16
+ protected $_version = "1.5.2";
17
  protected $_min_gravityforms_version = "1.8.20";
18
 
19
  /**
328
  * @since 1.5.0
329
  * @return array Array of form settings
330
  */
331
+ public function form_settings_fields( $form ) {
332
  return array(
333
  array(
334
  "title" => __( 'Event Tracking Settings', $this->_text_domain ),