-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
deactivation.php
59 lines (46 loc) · 1.27 KB
/
deactivation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* Deactivation Hook
*
* @package WPGraphql\RankMath
*/
declare( strict_types = 1 );
namespace WPGraphQL\RankMath;
/**
* Runs when WPGraphQL is de-activated.
*
* This cleans up data that WPGraphQL stores.
*/
function deactivation_callback(): callable {
return static function (): void {
// Fire an action when WPGraphQL is de-activating.
do_action( 'graphql_seo_deactivate' );
// Delete data during activation.
delete_data();
};
}
/**
* Delete data on deactivation.
*/
function delete_data(): void {
// Check if the plugin is set to delete data or not.
$delete_data = graphql_seo_get_setting( 'delete_data_on_deactivate' );
// Bail if not set to delete.
if ( 'on' !== $delete_data ) {
return;
}
// Delete plugin version.
delete_option( 'wp_graphql_seo_version' );
// Initialize the settings API.
$settings = new \WPGraphQL\RankMath\Admin\Settings\Settings();
$settings::register_settings();
// Get all the registered settings fields.
$fields = $settings::get_settings_api()->get_settings_fields();
// Loop over the registered settings fields and delete the options.
if ( ! empty( $fields ) && is_array( $fields ) ) {
foreach ( $fields as $group => $fields ) {
delete_option( $group );
}
}
do_action( 'graphql_seo_delete_data' );
}