| @@ -75,15 +75,8 @@ | ||
| 75 | 75 | 'table_name' => $wpTableName, |
| 76 | 76 | ] ); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | -function drop_table_followup() { | |
| 80 | - global $wpdb; | |
| 81 | - | |
| 82 | - // Follow-up status only references opt-ins; it goes with them. | |
| 83 | - $wpdb->query( "DROP TABLE IF EXISTS " . esc_sql( $wpdb->prefix . 'f12_cf7_doubleoptin_followup' ) ); | |
| 84 | -} | |
| 85 | - | |
| 86 | 79 | if ( should_keep_data_on_uninstall() ) { |
| 87 | 80 | Logger::getInstance()->info( 'Uninstall: keeping opt-in data (keep_data_on_uninstall enabled).', [ |
| 88 | 81 | 'plugin' => 'double-opt-in', |
| 89 | 82 | ] ); |
| @@ -91,9 +84,8 @@ | ||
| 91 | 84 | Logger::getInstance()->info( 'Uninstall: deleting opt-in data (keep_data_on_uninstall disabled by admin).', [ |
| 92 | 85 | 'plugin' => 'double-opt-in', |
| 93 | 86 | ] ); |
| 94 | 87 | drop_table_categories(); |
| 95 | - drop_table_followup(); | |
| 96 | 88 | drop_table_optin(); |
| 97 | 89 | } |
| 98 | 90 | |
| 99 | 91 | // Purely operational options with no value after removal. Admin-set config |
| @@ -106,8 +98,4 @@ | ||
| 106 | 98 | // The daily telemetry job is no longer scheduled, but an installation that ran |
| 107 | 99 | // an older version still carries the event. Uninstalling has to take it with |
| 108 | 100 | // it, otherwise the entry outlives the plugin in the WP-Cron table. |
| 109 | 101 | wp_clear_scheduled_hook( 'f12_cf7_doubleoptin_daily_telemetry' ); |
| 110 | -wp_clear_scheduled_hook( 'f12_doi_follow_up_sweep' ); | |
| 111 | -// Retry events carry the opt-in id as argument; only unschedule_hook | |
| 112 | -// removes them regardless of arguments. | |
| 113 | -wp_unschedule_hook( 'f12_doi_follow_up_retry' ); | |