PluginProbe ʕ •ᴥ•ʔ
Firebase Authentication / trunk
Firebase Authentication vtrunk
1.7.0 trunk 1.0.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.8 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9
firebase-authentication / includes / class-mo-firebase-authentication-deactivator.php
firebase-authentication / includes Last commit date
images 6 years ago class-mo-firebase-authentication-deactivator.php 3 years ago class-mo-firebase-authentication-loader.php 3 weeks ago class-mo-firebase-authentication.php 3 weeks ago
class-mo-firebase-authentication-deactivator.php
49 lines
1 <?php
2 /**
3 * Fired during plugin deactivation
4 *
5 * @link https://miniorange.com
6 * @since 1.0.0
7 *
8 * @package Firebase_Authentication
9 * @subpackage Firebase_Authentication/includes
10 */
11
12 /**
13 * Fired during plugin deactivation.
14 *
15 * This class defines all code necessary to run during the plugin's deactivation.
16 *
17 * @since 1.0.0
18 * @package Firebase_Authentication
19 * @subpackage Firebase_Authentication/includes
20 * @author miniOrange <info@miniorange.com>
21 */
22 class MO_Firebase_Authentication_Deactivator {
23
24 /**
25 * Short Description. (use period)
26 *
27 * Long Description.
28 *
29 * @since 1.0.0
30 */
31 public static function deactivate() {
32 do_action( 'clear_os_cache' );
33 delete_option( 'mo_fb_host_name' );
34 delete_option( ' mo_firebase_authentication_lv' );
35 delete_option( ' mo_firebase_authentication_lk' );
36 delete_option( 'mo_firebase_authentication_new_registration' );
37 delete_option( 'mo_firebase_authentication_admin_phone' );
38 delete_option( 'mo_firebase_authentication_verify_customer' );
39 delete_option( 'mo_firebase_authentication_admin_customer_key' );
40 delete_option( 'mo_firebase_authentication_admin_api_key' );
41 delete_option( 'mo_firebase_authentication_new_customer' );
42 delete_option( 'mo_firebase_authentication_customer_token' );
43 delete_option( 'mo_firebase_auth_message' );
44 delete_option( 'mo_firebase_authentication_registration_status' );
45 delete_option( 'mo_firebase_authentication_current_plugin_version' );
46 }
47
48 }
49