diff options
author | Jeremy Trojan <jer@jerdiggity.com> | 2011-05-21 15:45:25 -0700 |
---|---|---|
committer | Jeremy Trojan <jer@jerdiggity.com> | 2011-05-21 15:45:25 -0700 |
commit | 935ed4838cc9564c1f831b7d1ba4f9783d3f81a0 (patch) | |
tree | 2ce4411c8cfc6d87aff2530c9565840bf288521d /fblikebutton.install | |
parent | 584e199d1dcaa2f3d7bef48b16799344b33a3ed4 (diff) | |
download | fblikebutton-935ed4838cc9564c1f831b7d1ba4f9783d3f81a0.tar.gz fblikebutton-935ed4838cc9564c1f831b7d1ba4f9783d3f81a0.tar.bz2 |
Added option to adjust weight on nodes.
Added option to include button on teasers.
Added option to include custom iframe width.
Added option to include custom iframe height.
Added option to include custom CSS.
Updated fetched Facebook URL to "https" so button can be displayed on secure sites
Updated hook_uninstall() to reflect above changes.
Diffstat (limited to 'fblikebutton.install')
-rw-r--r-- | fblikebutton.install | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/fblikebutton.install b/fblikebutton.install index 9a9f853..f11c08b 100644 --- a/fblikebutton.install +++ b/fblikebutton.install @@ -16,5 +16,22 @@ function fblikebutton_uninstall() { variable_del('fblikebutton_show_faces'); variable_del('fblikebutton_layout'); variable_del('fblikebutton_color_scheme'); - variable_del('fblikebutton_action'); + variable_del('fblikebutton_iframe_height'); + variable_del('fblikebutton_iframe_width'); + variable_del('fblikebutton_iframe_css'); + variable_del('fblikebutton_displaysend'); + variable_del('fblikebutton_font'); + variable_del('fblikebutton_weight'); + variable_del('fblikebutton_showonteasers'); + variable_del('fblikebutton_xfbml'); + variable_del('fblikebutton_appid'); + variable_del('fblikebutton_bl_layout'); + variable_del('fblikebutton_bl_layout'); + variable_del('fblikebutton_bl_show_faces'); + variable_del('fblikebutton_bl_action'); + variable_del('fblikebutton_bl_font'); + variable_del('fblikebutton_bl_color_scheme'); + variable_del('fblikebutton_bl_iframe_width'); + variable_del('fblikebutton_bl_iframe_height'); + variable_del('fblikebutton_bl_iframe_css'); } |