blob: 9a9f853e88472e6bb080021b63b30c722d3a7e61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
// $Id$
/**
* Implementation of hook_install().
*/
function fblikebutton_install() {
// There really is no "schema" to install.
}
/**
* Implementation of hook_uninstall().
*/
function fblikebutton_uninstall() {
variable_del('fblikebutton_node_types');
variable_del('fblikebutton_show_faces');
variable_del('fblikebutton_layout');
variable_del('fblikebutton_color_scheme');
variable_del('fblikebutton_action');
}
|