PluginProbe
Content Control – The Ultimate Content Restriction Plugin! Restrict Content, Create Conditional Blocks & More / 2.0.12
Content Control – The Ultimate Content Restriction Plugin! Restrict Content, Create Conditional Blocks & More v2.0.12
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.10 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 47 releases
content-control / uninstall.php

uninstall.php in Content Control – The Ultimate Content Restriction Plugin! Restrict Content, Create Conditional Blocks & More 2.0.12, at uninstall.php

28 lines 556 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Content Control Uninstall File
4 *
5 * @package ContentControl
6 */
7
8 namespace ContentControl;
9
10 /**
11 * Uninstall Content Control
12 *
13 * @return void
14 */
15 function remove_wp_options_data() {
16 $keys = [
17 'content_control_license',
18 'content_control_pro_activation_date',
19 'content_control_installed_on',
20 'content_control_connect_token',
21 'content_control_version',
22 'content_control_data_versioning',
23 'content_control_debug_log_token', // delete log first.
24 'content_control_known_blockTypes',
25 'content_control_completed_upgrades',
26 ];
27 }
28