Plugin Directory

Changeset 1811670


Ignore:
Timestamp:
01/30/2018 08:33:37 AM (8 years ago)
Author:
benhays
Message:

Preparing for 0.4 release

Location:
gravity-forms-remove-entries/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • gravity-forms-remove-entries/trunk

    • Property svn:ignore
      •  

        old new  
        1 deploy.sh
        21README.md
         2Thumbs.db
         3.github/*
        34.git
         5.gitattributes
        46.gitignore
  • gravity-forms-remove-entries/trunk/gravity-forms-remove-entries.php

    r1407889 r1811670  
    44Plugin URI: https://github.com/bhays/gravity-forms-remove-entries
    55Description: Remove multiple entries from Gravity Forms. Optionally select a timeframe of removals or remove all.
    6 Version: 0.3.3
     6Version: 0.4
    77Author: Ben Hays
    88Author URI: http://benhays.com
    99
    1010------------------------------------------------------------------------
    11 Copyright 2016 Ben Hays
     11Copyright 2018 Ben Hays
    1212
    1313This program is free software; you can redistribute it and/or modify
     
    364364    }
    365365}
    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  
    22============================
    33
    4 Version 0.3.3
     4Version 0.4
    55
    66WordPress plugin for Gravity Forms that allows for easy removal of entries from forms. Remove all entires or entries specified by a date range.
     
    2121
    2222## Changelog
     23
     24### 0.4
     25* Fix from @zackkatz for Gravity View compatibility
    2326
    2427### 0.3.2
  • gravity-forms-remove-entries/trunk/readme.txt

    r1407889 r1811670  
    44Tags: gravity forms, gravityforms, remove entries, delete entries, remove
    55Requires at least: 3.3
    6 Tested up to: 4.5.1
    7 Stable tag: 0.3.3
     6Tested up to: 4.9.2
     7Stable tag: 0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4141== Changelog ==
    4242
     43### 0.4
     44* Fix from @zackkatz for Gravity View compatibility
     45
    4346### 0.3.3
    4447* Really fixed members integration
Note: See TracChangeset for help on using the changeset viewer.