Plugin Directory

Changeset 2679449


Ignore:
Timestamp:
02/15/2022 09:40:08 PM (4 years ago)
Author:
UaMV
Message:

readme updates

Location:
gravity-custom-code-keeper
Files:
10 added
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • gravity-custom-code-keeper/tags/2.2.1/gravityhopper-custom-code-keeper.php

    r2679431 r2679449  
    44* Plugin URI: https://wordpress.org/plugins/gravity-custom-code-keeper
    55* Description: Provides a reliable and consistent way to store and load custom form-related code on your site.
    6 * Version: 2.2
     6* Version: 2.2.1
    77* Author: Gravity Hopper
    8 * Author URI: https://gravityhopper.com?discount=GRAVITYCCK
     8* Author URI: https://gravityhopper.com
    99* Text Domain: gravityhopper-cck
    1010*
    1111* @package gravityhopper
    12 * @version 2.2
     12* @version 2.2.1
    1313* @author uamv
    1414* @copyright Copyright (c) 2021, uamv
     
    2828if ( ! function_exists( 'run_gravityhopper_custom_code_keeper' ) ) :
    2929
    30     define( 'GRAVITYHOPPER_CCK_VERSION', '2.2' );
     30    define( 'GRAVITYHOPPER_CCK_VERSION', '2.2.1' );
    3131    define( 'GRAVITYHOPPER_CCK_DIR_PATH', plugin_dir_path( __FILE__ ) );
    3232    define( 'GRAVITYHOPPER_CCK_DIR_URL', plugin_dir_url( __FILE__ ) );
  • gravity-custom-code-keeper/tags/2.2.1/readme.txt

    r2679431 r2679449  
    66Requires at least: 5.6
    77Tested up to: 5.9
    8 Stable tag: 2.2
     8Stable tag: 2.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1515
    1616= How does it work?
     17
    1718Gravity Custom Code Keeper…
    18 1. creates a directory at `wp-content/uploads/gravity_hopper/code/`.
    19 1. adds a file `gf-global-code.php` *(for housing globally run code)*.
    20 1. optionally creates/duplicates/deletes a `gf-00xx.php` file for every form created/duplicated/deleted. *(for housing form-specific code)*
    21 1. will load all files in the code directory associated with an existing form or having prefix that has been explicitly allowed.
    22 1. allows exporting any number of code files to compressed .zip.
    23 1. introduces a form settings page whereby you can preview relevant custom code and create a file if one doesn't yet exist.
    2419
    25 **Please note that Gravity Custom Code Keeper is intended for code organization only and doesn't restrict when code is run.**
    26 **All code from allowed files residing in the `gravity_hopper/code/` directory will run for all forms.**
    27 **Always use appropriate hooks and/or conditional checks when targeting specific forms and fields.**
     20- creates a directory at `wp-content/uploads/gravity_hopper/code/`.
     21- adds a file `gf-global-code.php` *(for housing globally run code)*.
     22- optionally creates/duplicates/deletes a `gf-00xx.php` file for every form created/duplicated/deleted. *(for housing form-specific code)*
     23- will load all files in the code directory associated with an existing form or having prefix that has been explicitly allowed.
     24- allows exporting any number of code files to compressed .zip.
     25- introduces a form settings page whereby you can preview relevant custom code and create a file if one doesn't yet exist.
     26
     27**Please note that Gravity Custom Code Keeper is intended for code organization only and doesn't restrict when code is run. All code from allowed files residing in the `gravity_hopper/code/` directory will run for all forms. Always use appropriate hooks and/or conditional checks when targeting specific forms and fields.**
    2828
    2929Use the following filters for file auto-generation/duplication/deletion.
    3030
    31 ```
     31`
    3232add_filter( 'gravityhopper-cck/create_file_after_new_form', '__return_true' );
    3333add_filter( 'gravityhopper-cck/create_file_after_duplicate_form', '__return_true' );
    3434add_filter( 'gravityhopper-cck/remove_file_after_delete_form', '__return_true' );
    35 ```
     35`
    3636
    3737= Why use it?
     38
    3839Gravity Custom Code Keeper provides orderliness to your code customizations, gives you a better sense of the specific code running across your site, and helps ensure your customizations are not lost when other site modifications are made.
    3940
     
    4950
    5051= Need more for your Gravity Forms development?
    51 Saving you time and effort with every form you build, **[Gravity Hopper](https://gravityhopper.com)** offers an elite array of developer tools that integrates seamlessly with Gravity Forms.
     52
     53Saving you time and effort with every form you build, **[Gravity Hopper](https://gravityhopper.com)** offers an elite array of builder tools that integrates seamlessly with Gravity Forms.
    5254
    5355**Field Templates:** Add often-used fields and groups of fields to your hopper. Quickly search and add your field templates to a form.
     
    8587== Changelog ==
    8688
     89= 2.2.1 // 2022.02-Feb.15 =
     90📖 DOC: formats readme file
     91
    8792= 2.2 // 2022.02-Feb.15 =
    8893🚀 RELEASE: Initial public launch
  • gravity-custom-code-keeper/trunk/gravityhopper-custom-code-keeper.php

    r2679431 r2679449  
    44* Plugin URI: https://wordpress.org/plugins/gravity-custom-code-keeper
    55* Description: Provides a reliable and consistent way to store and load custom form-related code on your site.
    6 * Version: 2.2
     6* Version: 2.2.1
    77* Author: Gravity Hopper
    8 * Author URI: https://gravityhopper.com?discount=GRAVITYCCK
     8* Author URI: https://gravityhopper.com
    99* Text Domain: gravityhopper-cck
    1010*
    1111* @package gravityhopper
    12 * @version 2.2
     12* @version 2.2.1
    1313* @author uamv
    1414* @copyright Copyright (c) 2021, uamv
     
    2828if ( ! function_exists( 'run_gravityhopper_custom_code_keeper' ) ) :
    2929
    30     define( 'GRAVITYHOPPER_CCK_VERSION', '2.2' );
     30    define( 'GRAVITYHOPPER_CCK_VERSION', '2.2.1' );
    3131    define( 'GRAVITYHOPPER_CCK_DIR_PATH', plugin_dir_path( __FILE__ ) );
    3232    define( 'GRAVITYHOPPER_CCK_DIR_URL', plugin_dir_url( __FILE__ ) );
  • gravity-custom-code-keeper/trunk/readme.txt

    r2679431 r2679449  
    66Requires at least: 5.6
    77Tested up to: 5.9
    8 Stable tag: 2.2
     8Stable tag: 2.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1515
    1616= How does it work?
     17
    1718Gravity Custom Code Keeper…
    18 1. creates a directory at `wp-content/uploads/gravity_hopper/code/`.
    19 1. adds a file `gf-global-code.php` *(for housing globally run code)*.
    20 1. optionally creates/duplicates/deletes a `gf-00xx.php` file for every form created/duplicated/deleted. *(for housing form-specific code)*
    21 1. will load all files in the code directory associated with an existing form or having prefix that has been explicitly allowed.
    22 1. allows exporting any number of code files to compressed .zip.
    23 1. introduces a form settings page whereby you can preview relevant custom code and create a file if one doesn't yet exist.
    2419
    25 **Please note that Gravity Custom Code Keeper is intended for code organization only and doesn't restrict when code is run.**
    26 **All code from allowed files residing in the `gravity_hopper/code/` directory will run for all forms.**
    27 **Always use appropriate hooks and/or conditional checks when targeting specific forms and fields.**
     20- creates a directory at `wp-content/uploads/gravity_hopper/code/`.
     21- adds a file `gf-global-code.php` *(for housing globally run code)*.
     22- optionally creates/duplicates/deletes a `gf-00xx.php` file for every form created/duplicated/deleted. *(for housing form-specific code)*
     23- will load all files in the code directory associated with an existing form or having prefix that has been explicitly allowed.
     24- allows exporting any number of code files to compressed .zip.
     25- introduces a form settings page whereby you can preview relevant custom code and create a file if one doesn't yet exist.
     26
     27**Please note that Gravity Custom Code Keeper is intended for code organization only and doesn't restrict when code is run. All code from allowed files residing in the `gravity_hopper/code/` directory will run for all forms. Always use appropriate hooks and/or conditional checks when targeting specific forms and fields.**
    2828
    2929Use the following filters for file auto-generation/duplication/deletion.
    3030
    31 ```
     31`
    3232add_filter( 'gravityhopper-cck/create_file_after_new_form', '__return_true' );
    3333add_filter( 'gravityhopper-cck/create_file_after_duplicate_form', '__return_true' );
    3434add_filter( 'gravityhopper-cck/remove_file_after_delete_form', '__return_true' );
    35 ```
     35`
    3636
    3737= Why use it?
     38
    3839Gravity Custom Code Keeper provides orderliness to your code customizations, gives you a better sense of the specific code running across your site, and helps ensure your customizations are not lost when other site modifications are made.
    3940
     
    4950
    5051= Need more for your Gravity Forms development?
    51 Saving you time and effort with every form you build, **[Gravity Hopper](https://gravityhopper.com)** offers an elite array of developer tools that integrates seamlessly with Gravity Forms.
     52
     53Saving you time and effort with every form you build, **[Gravity Hopper](https://gravityhopper.com)** offers an elite array of builder tools that integrates seamlessly with Gravity Forms.
    5254
    5355**Field Templates:** Add often-used fields and groups of fields to your hopper. Quickly search and add your field templates to a form.
     
    8587== Changelog ==
    8688
     89= 2.2.1 // 2022.02-Feb.15 =
     90📖 DOC: formats readme file
     91
    8792= 2.2 // 2022.02-Feb.15 =
    8893🚀 RELEASE: Initial public launch
Note: See TracChangeset for help on using the changeset viewer.