| @@ -90,11 +90,25 @@ | ||
| 90 | 90 | * @return void |
| 91 | 91 | */ |
| 92 | 92 | public static function deactivation() { |
| 93 | 93 | delete_option( 'shopbuilder_permalinks_flushed' ); |
| 94 | + self::clear_scheduled_events(); | |
| 94 | 95 | } |
| 95 | - | |
| 96 | 96 | /** |
| 97 | + * Clear Scheduled Events | |
| 98 | + * | |
| 99 | + * @return void | |
| 100 | + */ | |
| 101 | + public static function clear_scheduled_events() { | |
| 102 | + $schedule = get_option( 'rtsb_cron_schedule_free', [] ); | |
| 103 | + if ( empty( $schedule ) ) { | |
| 104 | + return; | |
| 105 | + } | |
| 106 | + foreach ( $schedule as $v ) { | |
| 107 | + wp_clear_scheduled_hook( $v ); | |
| 108 | + } | |
| 109 | + } | |
| 110 | + /** | |
| 97 | 111 | * Set default options. |
| 98 | 112 | * |
| 99 | 113 | * @return void |
| 100 | 114 | */ |
| @@ -114,9 +128,8 @@ | ||
| 114 | 128 | $type = 'array' === gettype( $field['value'] ) ? [] : ''; |
| 115 | 129 | $rawOptions[ $field_id ] = ! empty( $field['value'] ) ? $field['value'] : $type; |
| 116 | 130 | } |
| 117 | 131 | } |
| 118 | - | |
| 119 | 132 | Fns::set_options( $sections_id, $blocks_id, $rawOptions ); |
| 120 | 133 | } |
| 121 | 134 | } |
| 122 | 135 | } |