/**
  * This function is called when the plugin is deactivated
  *
  * @since 1.0
  */
 public function deactivate_plugin()
 {
     $option = get_option('social_archiver');
     // Unschedule twitter cron
     if (isset($option['twitter_auto_archiving']) && $option['twitter_auto_archiving'] == 1) {
         $twitter_cron = new TwitterCron();
         $twitter_cron->unschedule_event();
     }
 }