diff options
-rw-r--r-- | README.txt | 2 | ||||
-rw-r--r-- | finder_menu.install | 14 | ||||
-rw-r--r-- | finder_menu.module | 7 |
3 files changed, 15 insertions, 8 deletions
@@ -7,4 +7,4 @@ at http://www.alistapart.com/articles/complexdynamiclists. The code is mostly an adaptation from Dynamic Persistent Menu found at http://drupal.org/project/dynamic_persistent_menu -Additional code by Silvio - s1lv10 at uol.com.br. +Additional code by Silvio - silvio at devlet.com.br. 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() { |