| Server IP : 104.21.25.182 / Your IP : 216.73.217.68 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/plugins/cartflows/ |
Upload File : |
<?php
/**
* CartFlows
* Delete Plugin Data.
*
* @package CartFlows
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
global $wpdb;
$is_delete = get_option( 'cartflows_delete_plugin_data', false );
if ( 'enable' === $is_delete ) {
$options = array(
'cartflows-version',
'wcf_setup_complete',
'cartflows-divi-flows-and-steps-1',
'cartflows-gutenberg-flows-and-steps-1',
'cartflows-elementor-flows-and-steps-1',
'cartflows-beaver-builder-flows-and-steps-1',
'cartflows-last-export-checksums-latest',
'cartflows-batch-status-string',
'cartflows-elementor-requests',
'cartflows-fresh-site',
'cartflows-batch-is-complete',
'cartflows-old-ui-user',
'cartflows-legacy-admin',
'cartflows-legacy-meta-show-design-options',
'cartflows-assets-version',
'_cartflows_common',
'_cartflows_permalink',
'_cartflows_facebook',
'_cartflows_google_analytics',
'_cartflows_offer_global_settings',
'cf_analytics_installed_time',
'cf_analytics_optin',
'cartflows_delete_plugin_data',
'wcf-instant-checkout-notice-skipped',
);
foreach ( $options as $index => $key ) {
delete_option( $key );
}
if ( function_exists( 'as_next_scheduled_action' ) && as_next_scheduled_action( 'cartflows_send_report_summary_email' ) ) {
as_unschedule_all_actions( 'cartflows_send_report_summary_email' );
}
}