Changeset 1811670
- Timestamp:
- 01/30/2018 08:33:37 AM (8 years ago)
- Location:
- gravity-forms-remove-entries/trunk
- Files:
-
- 4 edited
-
. (modified) (1 prop)
-
gravity-forms-remove-entries.php (modified) (2 diffs)
-
readme.md (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gravity-forms-remove-entries/trunk
- Property svn:ignore
-
old new 1 deploy.sh2 1 README.md 2 Thumbs.db 3 .github/* 3 4 .git 5 .gitattributes 4 6 .gitignore
-
- Property svn:ignore
-
gravity-forms-remove-entries/trunk/gravity-forms-remove-entries.php
r1407889 r1811670 4 4 Plugin URI: https://github.com/bhays/gravity-forms-remove-entries 5 5 Description: Remove multiple entries from Gravity Forms. Optionally select a timeframe of removals or remove all. 6 Version: 0. 3.36 Version: 0.4 7 7 Author: Ben Hays 8 8 Author URI: http://benhays.com 9 9 10 10 ------------------------------------------------------------------------ 11 Copyright 201 6Ben Hays11 Copyright 2018 Ben Hays 12 12 13 13 This program is free software; you can redistribute it and/or modify … … 364 364 } 365 365 } 366 367 if(!function_exists("rgget")){368 function rgget($name, $array=null){369 if(!isset($array))370 $array = $_GET;371 372 if(isset($array[$name]))373 return $array[$name];374 375 return "";376 }377 }378 379 if(!function_exists("rgpost")){380 function rgpost($name, $do_stripslashes=true){381 if(isset($_POST[$name]))382 return $do_stripslashes ? stripslashes_deep($_POST[$name]) : $_POST[$name];383 384 return "";385 }386 }387 388 if(!function_exists("rgar")){389 function rgar($array, $name){390 if(isset($array[$name]))391 return $array[$name];392 393 return '';394 }395 }396 397 if(!function_exists("rgempty")){398 function rgempty($name, $array = null){399 if(!$array)400 $array = $_POST;401 402 $val = rgget($name, $array);403 return empty($val);404 }405 }406 407 if(!function_exists("rgblank")){408 function rgblank($text){409 return empty($text) && strval($text) != "0";410 }411 } -
gravity-forms-remove-entries/trunk/readme.md
r1407889 r1811670 2 2 ============================ 3 3 4 Version 0. 3.34 Version 0.4 5 5 6 6 WordPress plugin for Gravity Forms that allows for easy removal of entries from forms. Remove all entires or entries specified by a date range. … … 21 21 22 22 ## Changelog 23 24 ### 0.4 25 * Fix from @zackkatz for Gravity View compatibility 23 26 24 27 ### 0.3.2 -
gravity-forms-remove-entries/trunk/readme.txt
r1407889 r1811670 4 4 Tags: gravity forms, gravityforms, remove entries, delete entries, remove 5 5 Requires at least: 3.3 6 Tested up to: 4. 5.17 Stable tag: 0. 3.36 Tested up to: 4.9.2 7 Stable tag: 0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 41 41 == Changelog == 42 42 43 ### 0.4 44 * Fix from @zackkatz for Gravity View compatibility 45 43 46 ### 0.3.3 44 47 * Really fixed members integration
Note: See TracChangeset
for help on using the changeset viewer.