You are here

function fb_instant_articles_uninstall in Facebook Instant Articles 7

Same name and namespace in other branches
  1. 7.2 fb_instant_articles.install \fb_instant_articles_uninstall()

Implements hook_uninstall().

File

./fb_instant_articles.install, line 11
Install and update functions for Facebook Instant Articles Base module.

Code

function fb_instant_articles_uninstall() {
  variable_del('fb_instant_articles_page_id');
  variable_del('fb_instant_articles_style');
  variable_del('fb_instant_articles_ad_type');
  variable_del('fb_instant_articles_ads_iframe_url');
  variable_del('fb_instant_articles_ads_an_placement_id');
  variable_del('fb_instant_articles_ads_dimensions');
  variable_del('fb_instant_articles_ads_embed_code');
  variable_del('fb_instant_articles_analytics_embed_code');
  variable_del('fb_instant_articles_enable_logging');
  variable_del('fb_instant_articles_bypass_composer_manager');
}