Files
wp-facebook-ratings/includes/deactivate.php

22 lines
509 B
PHP

<?php
function fbr_deactivate_plugin(){
if( version_compare( get_bloginfo( 'version' ), '4.5', '<' ) ){
wp_die( __( 'You must update Wordpress to use this plugin', 'fbsr' ) );
}
// Setup Option Page fields
$fbr_opts = get_option( 'fbr_opts' );
if( $fbr_opts ){
$opts = [
'fbr_app_id' => null,
'fbr_app_secret' => null,
'fbr_page_id' => null,
'fbr_page_access_token' => null,
'fbr_ratings' => array(),
];
update_option( 'fbr_opts', $fbr_opts );
}
}