-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgf-code-chest.php
More file actions
36 lines (28 loc) · 993 Bytes
/
gf-code-chest.php
File metadata and controls
36 lines (28 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* Plugin Name: Gravity Forms Code Chest
* Description: Implement your form-specific styles and scripts for simple, portable customizations. Ahoy!
* Plugin URI: https://gravitywiz.com/gravity-forms-code-chest/
* Version: 1.0.11
* Author: Gravity Wiz
* Author URI: https://gravitywiz.com/
* License: GPL2
* Text Domain: gf-code-chest
* Domain Path: /languages
*
* @package gf-code-chest
* @copyright Copyright (c) 2022, Gravity Wiz, LLC
* @author Gravity Wiz <support@gravitywiz.com>
* @license GPLv2
* @link https://gravitywiz.com/gravity-forms-code-chest/
*/
define( 'GWIZ_GF_CODE_CHEST_VERSION', '1.0.11' );
defined( 'ABSPATH' ) || die();
require plugin_dir_path( __FILE__ ) . 'vendor/autoload_packages.php';
\Spellbook\Bootstrap::register( __FILE__ );
add_action( 'gform_loaded', function() {
if ( ! method_exists( 'GFForms', 'include_feed_addon_framework' ) ) {
return;
}
GFAddOn::register( 'GWiz_GF_Code_Chest' );
}, 0 ); // Load before Gravity Flow