Changeset 2679449
- Timestamp:
- 02/15/2022 09:40:08 PM (4 years ago)
- Location:
- gravity-custom-code-keeper
- Files:
-
- 10 added
- 2 edited
- 8 copied
-
tags/2.2.1 (copied) (copied from gravity-custom-code-keeper/trunk)
-
tags/2.2.1/LICENSE (copied) (copied from gravity-custom-code-keeper/trunk/LICENSE)
-
tags/2.2.1/README.md (copied) (copied from gravity-custom-code-keeper/trunk/README.md)
-
tags/2.2.1/class-gh-cck.php (copied) (copied from gravity-custom-code-keeper/trunk/class-gh-cck.php)
-
tags/2.2.1/files (copied) (copied from gravity-custom-code-keeper/trunk/files)
-
tags/2.2.1/gh-cck.js (copied) (copied from gravity-custom-code-keeper/trunk/gh-cck.js)
-
tags/2.2.1/gravityhopper-custom-code-keeper.php (copied) (copied from gravity-custom-code-keeper/trunk/gravityhopper-custom-code-keeper.php) (2 diffs)
-
tags/2.2.1/readme.txt (copied) (copied from gravity-custom-code-keeper/trunk/readme.txt) (4 diffs)
-
tags/2.2/LICENSE (added)
-
tags/2.2/README.md (added)
-
tags/2.2/class-gh-cck.php (added)
-
tags/2.2/files (added)
-
tags/2.2/files/gf-global-code.php (added)
-
tags/2.2/files/gform-00xx.php (added)
-
tags/2.2/files/gravityhopper-custom-code-keeper-loader.php (added)
-
tags/2.2/gh-cck.js (added)
-
tags/2.2/gravityhopper-custom-code-keeper.php (added)
-
tags/2.2/readme.txt (added)
-
trunk/gravityhopper-custom-code-keeper.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gravity-custom-code-keeper/tags/2.2.1/gravityhopper-custom-code-keeper.php
r2679431 r2679449 4 4 * Plugin URI: https://wordpress.org/plugins/gravity-custom-code-keeper 5 5 * 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 7 7 * Author: Gravity Hopper 8 * Author URI: https://gravityhopper.com ?discount=GRAVITYCCK8 * Author URI: https://gravityhopper.com 9 9 * Text Domain: gravityhopper-cck 10 10 * 11 11 * @package gravityhopper 12 * @version 2.2 12 * @version 2.2.1 13 13 * @author uamv 14 14 * @copyright Copyright (c) 2021, uamv … … 28 28 if ( ! function_exists( 'run_gravityhopper_custom_code_keeper' ) ) : 29 29 30 define( 'GRAVITYHOPPER_CCK_VERSION', '2.2 ' );30 define( 'GRAVITYHOPPER_CCK_VERSION', '2.2.1' ); 31 31 define( 'GRAVITYHOPPER_CCK_DIR_PATH', plugin_dir_path( __FILE__ ) ); 32 32 define( 'GRAVITYHOPPER_CCK_DIR_URL', plugin_dir_url( __FILE__ ) ); -
gravity-custom-code-keeper/tags/2.2.1/readme.txt
r2679431 r2679449 6 6 Requires at least: 5.6 7 7 Tested up to: 5.9 8 Stable tag: 2.2 8 Stable tag: 2.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 15 15 16 16 = How does it work? 17 17 18 Gravity 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.24 19 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.** 28 28 29 29 Use the following filters for file auto-generation/duplication/deletion. 30 30 31 ` ``31 ` 32 32 add_filter( 'gravityhopper-cck/create_file_after_new_form', '__return_true' ); 33 33 add_filter( 'gravityhopper-cck/create_file_after_duplicate_form', '__return_true' ); 34 34 add_filter( 'gravityhopper-cck/remove_file_after_delete_form', '__return_true' ); 35 ` ``35 ` 36 36 37 37 = Why use it? 38 38 39 Gravity 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. 39 40 … … 49 50 50 51 = 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 53 Saving 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. 52 54 53 55 **Field Templates:** Add often-used fields and groups of fields to your hopper. Quickly search and add your field templates to a form. … … 85 87 == Changelog == 86 88 89 = 2.2.1 // 2022.02-Feb.15 = 90 📖 DOC: formats readme file 91 87 92 = 2.2 // 2022.02-Feb.15 = 88 93 🚀 RELEASE: Initial public launch -
gravity-custom-code-keeper/trunk/gravityhopper-custom-code-keeper.php
r2679431 r2679449 4 4 * Plugin URI: https://wordpress.org/plugins/gravity-custom-code-keeper 5 5 * 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 7 7 * Author: Gravity Hopper 8 * Author URI: https://gravityhopper.com ?discount=GRAVITYCCK8 * Author URI: https://gravityhopper.com 9 9 * Text Domain: gravityhopper-cck 10 10 * 11 11 * @package gravityhopper 12 * @version 2.2 12 * @version 2.2.1 13 13 * @author uamv 14 14 * @copyright Copyright (c) 2021, uamv … … 28 28 if ( ! function_exists( 'run_gravityhopper_custom_code_keeper' ) ) : 29 29 30 define( 'GRAVITYHOPPER_CCK_VERSION', '2.2 ' );30 define( 'GRAVITYHOPPER_CCK_VERSION', '2.2.1' ); 31 31 define( 'GRAVITYHOPPER_CCK_DIR_PATH', plugin_dir_path( __FILE__ ) ); 32 32 define( 'GRAVITYHOPPER_CCK_DIR_URL', plugin_dir_url( __FILE__ ) ); -
gravity-custom-code-keeper/trunk/readme.txt
r2679431 r2679449 6 6 Requires at least: 5.6 7 7 Tested up to: 5.9 8 Stable tag: 2.2 8 Stable tag: 2.2.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 15 15 16 16 = How does it work? 17 17 18 Gravity 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.24 19 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.** 28 28 29 29 Use the following filters for file auto-generation/duplication/deletion. 30 30 31 ` ``31 ` 32 32 add_filter( 'gravityhopper-cck/create_file_after_new_form', '__return_true' ); 33 33 add_filter( 'gravityhopper-cck/create_file_after_duplicate_form', '__return_true' ); 34 34 add_filter( 'gravityhopper-cck/remove_file_after_delete_form', '__return_true' ); 35 ` ``35 ` 36 36 37 37 = Why use it? 38 38 39 Gravity 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. 39 40 … … 49 50 50 51 = 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 53 Saving 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. 52 54 53 55 **Field Templates:** Add often-used fields and groups of fields to your hopper. Quickly search and add your field templates to a form. … … 85 87 == Changelog == 86 88 89 = 2.2.1 // 2022.02-Feb.15 = 90 📖 DOC: formats readme file 91 87 92 = 2.2 // 2022.02-Feb.15 = 88 93 🚀 RELEASE: Initial public launch
Note: See TracChangeset
for help on using the changeset viewer.