First stride at getting a version 7.x working...

This commit is contained in:
Alexis Wilke
2010-05-31 09:44:37 +00:00
parent 9cdd779930
commit 4d9851e410
8 changed files with 266 additions and 162 deletions

View File

@@ -5,49 +5,8 @@
* Get rid of the variables used by simple menu.
*/
function simplemenu_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'simplemenu_%'");
}
/**
* Implementation of hook_update_N().
*/
function simplemenu_update_6001() {
// if navigation menu was used in Drupal 5 use the same in Drupal 6.
// otherwise, we can't do anything.
if (variable_get('simplemenu_menu', 1) == 1) {
variable_set('simplemenu_menu', 'navigation:0');
}
return array();
}
/**
* Implementation of hook_update_N().
*/
function simplemenu_update_6002() {
// fix variable name
variable_set('simplemenu_detect_popup', variable_get('simplemenu_detect_popop', 1));
variable_del('simplemenu_detect_popop');
return array();
}
/**
* Implementation of hook_update_N().
*/
function simplemenu_update_6003() {
if (variable_get('simplemenu_devel', 0)) {
drupal_set_message('The Simplemenu Devel is now defined in a separate module. Enable that module if you want to use the devel menu.', 'warning');
}
variable_del('simplemenu_devel');
return array();
}
/**
* Implementation of hook_update_N().
*/
function simplemenu_update_6004() {
// enable multiple menus selection
variable_set('simplemenu_menus', array(variable_get('simplemenu_menu', 'navigation:0')));
return array();
// XXX
//db_query("DELETE FROM {variable} WHERE name LIKE 'simplemenu_%'");
}
// vim: ts=2 sw=2 et syntax=php