Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
likhxapw
/
www
/
school
/
wp-content
/
plugins
/
jetformbuilder
/
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 :
uninstall.php
| Size :
2.39
KB
Copy
<?php /** * @since 3.0.0 */ // phpcs:disable WordPress.DB.DirectDatabaseQuery // if uninstall.php is not called by WordPress, die if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { die; } require_once 'jet-form-builder.php'; // Disable Action Schedule Queue Runner. if ( class_exists( 'ActionScheduler_QueueRunner' ) ) { ActionScheduler_QueueRunner::instance()->unhook_dispatch_async_request(); } $options = get_option( 'jet_form_builder_settings__options-tab' ); if ( ! $options ) { return; } $options = json_decode( $options, true ); if ( empty( $options['clear_on_uninstall'] ) ) { return; } $opt_prefixes = array( 'jet\_form\_builder\_settings\_\_', 'jet\_fb\_', 'jfb\-', 'jfb\_', ); $additional_prefixes = array(); foreach ( $opt_prefixes as $prefix ) { array_push( $additional_prefixes, '\_transient\_' . $prefix, '\_site\_transient\_' . $prefix, '\_transient\_timeout\_' . $prefix, '\_site\_transient\_timeout\_' . $prefix ); } $opt_prefixes = array_merge( $opt_prefixes, $additional_prefixes ); $options_condition = "option_name LIKE '" . implode( "%' OR option_name LIKE '", $opt_prefixes ) . "%'"; $tables = array( // secondary tables 'tokens_to_records', 'records_actions', 'records_errors', 'records_fields', 'subscription_to_payer_shipping', 'subscriptions_to_records', 'subscriptions_to_payments', 'subscriptions_notes', 'payment_to_payer_shipping', 'payments_to_records', 'payers_shipping', // primary tables 'tokens', 'csrf_tokens', 'recurring_cycles', 'subscriptions', 'payments', 'migrations', 'payers', 'records', ); global $wpdb; // phpcs:disable WordPress.DB.PreparedSQL foreach ( $tables as $table_name ) { $wpdb->query( 'DROP TABLE IF EXISTS ' . $wpdb->prefix . 'jet_fb_' . $table_name ); } $wpdb->query( "DELETE FROM {$wpdb->options} WHERE {$options_condition}" ); // phpcs:enable WordPress.DB.PreparedSQL $forms = get_posts( array( 'post_type' => array( 'jet-form-builder' ), 'post_status' => 'any', 'numberposts' => - 1, 'fields' => 'ids', ) ); if ( $forms ) { foreach ( $forms as $form_id ) { wp_delete_post( $form_id, true ); } } /** * @var WP_Filesystem_Base $wp_filesystem */ global $wp_filesystem; $uploads_directory = wp_upload_dir(); if ( empty( $uploads_directory['error'] ) ) { $wp_filesystem->rmdir( $uploads_directory['basedir'] . '/jet-form-builder/', true ); } ( new JFB_Modules\Jobs\Module() )->unschedule_all();
Back