Plugin Directory

Changeset 1803587


Ignore:
Timestamp:
01/16/2018 05:16:14 AM (8 years ago)
Author:
EngageWP
Message:

Updated author info

Location:
disable-gravity-forms-fields
Files:
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • disable-gravity-forms-fields/tags/1.3.1/disable-gf-fields.php

    r1158060 r1803587  
    22/**
    33 * Plugin Name: Disable Gravity Forms Fields
    4  * Plugin URI: http://www.engagewp.com/
     4 * Plugin URI: https://renventura.com/
    55 * Description: Disable form fields by adding the CSS class "disabled". Fields can also be set to the readonly attribute with a class of "readonly".
    66 * Author: Ren Ventura
    7  * Author URI: http://www.engagewp.com/
    8  * Version: 1.3
     7 * Author URI: https://renventura.com/
     8 * Version: 1.3.1
    99 * License: GPL 2.0
    1010 */
    1111
    1212/*
    13 
    1413    This program is free software; you can redistribute it and/or modify
    1514    it under the terms of the GNU General Public License, version 2, as
     
    3231    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    3332    THE SOFTWARE.
    34 
    3533*/
    3634
    3735//* Bail if accessed directly
    38 if ( ! defined( 'WPINC' ) )
     36if ( ! defined( 'WPINC' ) ) {
    3937    die;
     38}
    4039
    41 add_action( 'wp_enqueue_scripts', 'rv_disable_gf_fields' );
    42 function rv_disable_gf_fields() {
     40
     41/**
     42 * Enqueue JS
     43 */
     44function rv_disable_gf_fields_enqueues() {
    4345    wp_enqueue_script( 'disable-gf-fields', plugins_url( '/disable-gf-fields.js', __FILE__ ), array( 'jquery' ) );
    4446}
     47add_action( 'wp_enqueue_scripts', 'rv_disable_gf_fields_enqueues' );
  • disable-gravity-forms-fields/tags/1.3.1/readme.txt

    r1803576 r1803587  
    11=== Disable Gravity Forms Fields ===
    2 Contributors: EngageWP
     2Contributors: engagewp
    33Tags: Gravity Forms
    44Tested up to: 4.9.1
    5 Stable tag: 1.3
     5Stable tag: 1.3.1
    66License: GPLv2
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848
     49= 1.3.1 =
     50* Updated author info
     51
    4952= 1.3 =
    5053* Wrapped jQuery dependency in array in the enqueue call
  • disable-gravity-forms-fields/trunk/disable-gf-fields.php

    r1158060 r1803587  
    22/**
    33 * Plugin Name: Disable Gravity Forms Fields
    4  * Plugin URI: http://www.engagewp.com/
     4 * Plugin URI: https://renventura.com/
    55 * Description: Disable form fields by adding the CSS class "disabled". Fields can also be set to the readonly attribute with a class of "readonly".
    66 * Author: Ren Ventura
    7  * Author URI: http://www.engagewp.com/
    8  * Version: 1.3
     7 * Author URI: https://renventura.com/
     8 * Version: 1.3.1
    99 * License: GPL 2.0
    1010 */
    1111
    1212/*
    13 
    1413    This program is free software; you can redistribute it and/or modify
    1514    it under the terms of the GNU General Public License, version 2, as
     
    3231    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    3332    THE SOFTWARE.
    34 
    3533*/
    3634
    3735//* Bail if accessed directly
    38 if ( ! defined( 'WPINC' ) )
     36if ( ! defined( 'WPINC' ) ) {
    3937    die;
     38}
    4039
    41 add_action( 'wp_enqueue_scripts', 'rv_disable_gf_fields' );
    42 function rv_disable_gf_fields() {
     40
     41/**
     42 * Enqueue JS
     43 */
     44function rv_disable_gf_fields_enqueues() {
    4345    wp_enqueue_script( 'disable-gf-fields', plugins_url( '/disable-gf-fields.js', __FILE__ ), array( 'jquery' ) );
    4446}
     47add_action( 'wp_enqueue_scripts', 'rv_disable_gf_fields_enqueues' );
  • disable-gravity-forms-fields/trunk/readme.txt

    r1803576 r1803587  
    11=== Disable Gravity Forms Fields ===
    2 Contributors: EngageWP
     2Contributors: engagewp
    33Tags: Gravity Forms
    44Tested up to: 4.9.1
    5 Stable tag: 1.3
     5Stable tag: 1.3.1
    66License: GPLv2
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4747== Changelog ==
    4848
     49= 1.3.1 =
     50* Updated author info
     51
    4952= 1.3 =
    5053* Wrapped jQuery dependency in array in the enqueue call
Note: See TracChangeset for help on using the changeset viewer.