diff options
author | ariane <ass@MacBook-Pro-de-ariane-stolfi.local> | 2011-04-18 21:36:10 -0300 |
---|---|---|
committer | ariane <ass@MacBook-Pro-de-ariane-stolfi.local> | 2011-04-18 21:36:10 -0300 |
commit | e8b3ee01a0c659e3567a2704ce69ef116818baef (patch) | |
tree | df11ef6eca69ea2c1dc59b90c6e35c1eed404e0c | |
parent | ae8063ab18ed7fe49e0c1bd91819d1e8e41bb3ec (diff) | |
parent | 1f312b0bd7abbfed5bd267741f87b73a12c6d673 (diff) | |
download | finder_menu-e8b3ee01a0c659e3567a2704ce69ef116818baef.tar.gz finder_menu-e8b3ee01a0c659e3567a2704ce69ef116818baef.tar.bz2 |
Merge branch 'master' of ssh://git.devlet.com.br:2209/finder_menu
-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() { |