diff options
author | Silvio <silvio@devlet.com.br> | 2011-04-18 20:52:32 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2011-04-18 20:52:32 -0300 |
commit | 1f312b0bd7abbfed5bd267741f87b73a12c6d673 (patch) | |
tree | a7bec6c26b5fae9afaeb1a62306ddd24c809ffd6 | |
parent | 2ce7843df1816e7bb2fac1172629124a9cd2a701 (diff) | |
download | finder_menu-1f312b0bd7abbfed5bd267741f87b73a12c6d673.tar.gz finder_menu-1f312b0bd7abbfed5bd267741f87b73a12c6d673.tar.bz2 |
Moving hook_uninstall() to the right place
-rw-r--r-- | finder_menu.install | 14 | ||||
-rw-r--r-- | finder_menu.module | 7 |
2 files changed, 14 insertions, 7 deletions
diff --git a/finder_menu.install b/finder_menu.install new file mode 100644 index 0000000..ae7f716 --- /dev/null +++ b/finder_menu.install @@ -0,0 +1,14 @@ +<?php +// $Id$ + +/** + * @file + * Install file for Finder Menu. + */ + +/** + * Implementation of hook_uninstall(); + */ +function finder_menu_uninstall() { + variable_del('finder_menu'); +} diff --git a/finder_menu.module b/finder_menu.module index 50c8eca..996f94b 100644 --- a/finder_menu.module +++ b/finder_menu.module @@ -10,13 +10,6 @@ */ /** - * Implementation of hook_uninstall(); - */ -function finder_menu_uninstall() { - variable_del('finder_menu'); -} - -/** * Implementation of hook_init(); */ function finder_menu_init() { |