Changeset 1364652
- Timestamp:
- 03/05/2016 03:50:22 PM (10 years ago)
- Location:
- gravity-forms-to-excel-addon/trunk
- Files:
-
- 3 edited
-
gf2excel-addon.php (modified) (6 diffs)
-
readme.txt (modified) (3 diffs)
-
samples/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-to-excel-addon/trunk/gf2excel-addon.php
r1326362 r1364652 4 4 Plugin URI: http://wp4office.winball2.de/gf2excel 5 5 Description: Gravity Forms AddOn which saves form data into a given Excel document and attaches it to notification emails 6 Version: 0.1. 4.26 Version: 0.1.5.0 7 7 Author: Dieter Pfenning 8 8 Author URI: http://winball.de/ … … 13 13 Copyright 2012-2016 winball.de (PG Consulting GmbH) 14 14 15 Publishing date: 2016-0 1-10 16:22:5215 Publishing date: 2016-03-05 16:26:52 16 16 17 17 This program is free software; you can redistribute it and/or modify … … 34 34 //------------------------------------------ 35 35 if (!class_exists("GFForms")) { 36 die();36 // Gravity Forms Plugin ***is not*** active, do nothing 37 37 } else { 38 // Gravity Forms Plugin is active, so continue 38 39 GFForms::include_addon_framework(); 39 40 … … 43 44 protected $_min_gravityforms_version = "1.7.9999"; 44 45 protected $_slug = "gf2excel-addon"; 45 protected $_path = "g f2excel-addon/gf2excel-addon.php";46 protected $_path = "gravity-forms-to-excel-addon/gf2excel-addon.php"; 46 47 protected $_full_path = __FILE__; 47 48 protected $_title = "GravityForms2Excel"; … … 108 109 function wp4o_attach_excel($notification, $form, $entry){ 109 110 // read plugin settings for this form 110 $settings = $form['gf2excel-addon']; 111 if (array_key_exists('gf2excel-addon', $form)) { 112 $settings = $form['gf2excel-addon']; 113 } else { 114 return $notification;// no addons settings found so exit 115 } 116 111 117 112 118 // read active notifications for this form … … 189 195 function wp4o_delete_excel($entry, $form){ 190 196 // read plugin settings for this form 191 $settings = $form['gf2excel-addon']; 197 if (array_key_exists('gf2excel-addon', $form)) { 198 $settings = $form['gf2excel-addon']; 199 } else { 200 exit();// no addons settings found so exit 201 } 192 202 193 203 // read active notifications for this form -
gravity-forms-to-excel-addon/trunk/readme.txt
r1326362 r1364652 5 5 Requires at least: 3.7 6 6 Tested up to: 4.4.1 7 Stable tag: 0.1. 4.27 Stable tag: 0.1.5.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 62 62 == Changelog == 63 64 = 0.1.5.0 = 65 * changed sample excel file to contain VLOOKUP in cield C7 66 * fixed blank page of death after activation, when activated without having Gravity Forms active 67 * fixed $form['gf2excel-addon'] not defined 68 63 69 = 0.1.4.2 = 64 70 * changed readme, added FAQ … … 86 92 == Upgrade Notice == 87 93 94 = 0.1.5.0 = 95 * changed sample excel file to contain VLOOKUP in cield C7 96 * fixed blank page of death after activation, when activated without having Gravity Forms active 97 * fixed $form['gf2excel-addon'] not defined 98 88 99 = 0.1.4.2 = 89 100 Fixed some bugs: 90 101 * fixed missing charts in output Excel file 91 102 * fixed file not found for installation sin subdirectories 92 93 Added FAQ telling people restrictions of PHPExcel library (no macros, no form fields) 103 * Added FAQ telling people restrictions of PHPExcel library (no macros, no form fields) -
gravity-forms-to-excel-addon/trunk/samples/readme.txt
r1193092 r1364652 5 5 Requires at least: 3.7 6 6 Tested up to: 4.2.2 7 Stable tag: 0.1. 37 Stable tag: 0.1.5.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.