Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
likhxapw
/
www
/
heating
/
wp-content
/
plugins
/
gf-bulk-add-fields
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
63.250.38.10
System
Linux premium90.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User
likhxapw
PHP Version
8.3.30
Software
LiteSpeed
Doc root
Writable
close
Edit File :
gf-bulk-add-fields.php
| Size :
2.71
KB
Copy
<?php /* Plugin Name: Gravity Forms Bulk Add Fields Plugin URI: http://jetsloth.com/gravity-forms-bulk-add-fields/ Description: Easily add fields in bulk Author: JetSloth Version: 1.1.5 Requires at 3.5 Tested up to: 5.8.2 Author URI: https://jetsloth.com License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html Text Domain: gf_bulk_add_fields */ /* Copyright 2017 JetSloth This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ define('GFBAF_VERSION', '1.1.5'); define('GFBAF_HOME', 'https://jetsloth.com'); define('GFBAF_NAME', 'Gravity Forms Bulk Add Fields'); define('GFBAF_SLUG', 'gf-bulk-add-fields'); define('GFBAF_AUTHOR', 'JetSloth'); define('GFBAF_TIMEOUT', 20); define('GFBAF_SSL_VERIFY', false); add_action( 'gform_loaded', array( 'GF_Bulk_Add_Fields_Bootstrap', 'load' ), 5 ); class GF_Bulk_Add_Fields_Bootstrap { public static function load() { if ( ! method_exists( 'GFForms', 'include_addon_framework' ) ) { return; } // are we on GF 2.5+ define( 'GFBAF_GF_MIN_2_5', version_compare( GFCommon::$version, '2.5-dev-1', '>=' ) ); require_once( 'class-gf-bulk-add-fields.php' ); GFAddOn::register( 'GFBulkAddFields' ); } } function gf_bulk_add_fields() { if ( ! class_exists( 'GFBulkAddFields' ) ) { return false; } return GFBulkAddFields::get_instance(); } add_action('init', 'gf_bulk_add_fields_plugin_updater', 0); function gf_bulk_add_fields_plugin_updater() { if (gf_bulk_add_fields() === false) { return; } if ( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) { // load our custom updater if it doesn't already exist include_once( dirname( __FILE__ ) . '/inc/EDD_SL_Plugin_Updater.php' ); } // retrieve the license key $license_key = trim( gf_bulk_add_fields()->get_plugin_setting( 'gf_bulk_add_fields_license_key' ) ); // Disable SSL verification in order to prevent download update failures add_filter('edd_sl_api_request_verify_ssl', '__return_false'); // setup the updater $edd_updater = new EDD_SL_Plugin_Updater( GFBAF_HOME, __FILE__, array( 'version' => GFBAF_VERSION, 'license' => $license_key, 'item_name' => GFBAF_NAME, 'author' => 'JetSloth' ) ); }
Back