diff options
author | Silvio <s1lv10@uol.com.br> | 2009-10-06 14:44:30 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2009-10-06 14:44:30 -0300 |
commit | 7e0571e858f85a21482f8ba8bde6ac4ae038553b (patch) | |
tree | ac6cacf475def5d2a52891e1af43bf69260e306f | |
parent | 7c4678cd60503952da224d6587ea5f8d28d6e72c (diff) | |
download | finder_menu-7e0571e858f85a21482f8ba8bde6ac4ae038553b.tar.gz finder_menu-7e0571e858f85a21482f8ba8bde6ac4ae038553b.tar.bz2 |
Minor changes
-rw-r--r-- | finder_menu.module | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/finder_menu.module b/finder_menu.module index 5e9b627..651c45f 100644 --- a/finder_menu.module +++ b/finder_menu.module @@ -8,7 +8,14 @@ */ /** - * Implementation of hook_init(). + * Implementation of hook_uninstall(); + */ +function finder_menu_uninstall() { + variable_del('finder_menu'); +} + +/** + * Implementation of hook_init(); */ function finder_menu_init() { drupal_add_css(drupal_get_path('module', 'finder_menu') .'/finder_menu.css'); @@ -178,10 +185,3 @@ function finder_menu_has_unhidden_submenu($menu = FALSE) { return FALSE; } - -/** - * Implementation of hook_uninstall(); - */ -function finder_menu_uninstall() { - variable_del('finder_menu'); -} |