forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deactivation.php
54 lines (42 loc) · 1.14 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
<?php
/**
* Runs when WPGraphQL is de-activated
*
* This cleans up data that WPGraphQL stores
*
* @return void
*/
function graphql_deactivation_callback() {
// Fire an action when WPGraphQL is de-activating
do_action( 'graphql_deactivate' );
// Delete data during activation
delete_graphql_data();
}
/**
* Delete data on deactivation
*
* @return void
*/
function delete_graphql_data() {
// Check if the plugin is set to delete data or not
$delete_data = get_graphql_setting( 'delete_data_on_deactivate' );
// If data is not set to delete, stop now
if ( 'on' !== $delete_data ) {
return;
}
// Delete graphql version
delete_option( 'wp_graphql_version' );
// Initialize the settings API
$settings = new WPGraphQL\Admin\Settings\Settings();
$settings->init();
$settings->register_settings();
// Get all the registered settings fields
$fields = $settings->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_delete_data' );
}