PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home2/medicu/.trash/cartflows.7/ |
| Server: Linux tista.bd.svlogins.com 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 IP: 103.159.37.114 |
| Dir : /home2/medicu/.trash/cartflows.7/uninstall.php |
<?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',
);
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' );
}
}