diff options
author | MrDamasajaga <MrDamasajaga@198330.no-reply.drupal.org> | 2012-03-28 10:19:30 +0200 |
---|---|---|
committer | MrDamasajaga <MrDamasajaga@198330.no-reply.drupal.org> | 2012-03-28 10:19:30 +0200 |
commit | fb5e2ad9c7e7f94c5acb2327b809b08583581bb5 (patch) | |
tree | 591b0f64c35e1db9fb06ef9abf57490c6db5e11e /fblikebutton.install | |
parent | 558e76b6af13010e314f876293f01ef1c32e5dd1 (diff) | |
download | fblikebutton-fb5e2ad9c7e7f94c5acb2327b809b08583581bb5.tar.gz fblikebutton-fb5e2ad9c7e7f94c5acb2327b809b08583581bb5.tar.bz2 |
Issue #1167194 and #1171922 by MrDamasajaga: New 2.x branch with all the new functions and configurtion improvements.
Diffstat (limited to 'fblikebutton.install')
-rw-r--r-- | fblikebutton.install | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/fblikebutton.install b/fblikebutton.install index 478edf9..b3e8265 100644 --- a/fblikebutton.install +++ b/fblikebutton.install @@ -1,4 +1,8 @@ <?php +/** + * @file + * Install, update, and uninstall functions for the fblikebutton module. + */ // $Id$ /** @@ -12,6 +16,8 @@ function fblikebutton_install() { * Implementation of hook_uninstall(). */ function fblikebutton_uninstall() { + variable_del('fblikebutton_full_node_display'); + variable_del('fblikebutton_bl_iframe_css'); variable_del('fblikebutton_node_types'); variable_del('fblikebutton_show_faces'); variable_del('fblikebutton_layout'); @@ -23,7 +29,7 @@ function fblikebutton_uninstall() { variable_del('fblikebutton_displaysend'); variable_del('fblikebutton_font'); variable_del('fblikebutton_weight'); - variable_del('fblikebutton_showonteasers'); + variable_del('fblikebutton_teaser_display'); variable_del('fblikebutton_xfbml'); variable_del('fblikebutton_appid'); variable_del('fblikebutton_bl_layout'); |