You are here

function menu_minipanels_update_6103 in Menu Minipanels 6

Change from the show_admin to the exclude_pages variable.

File

./menu_minipanels.install, line 160
Installation and update scripts for Menu_MiniPanels.

Code

function menu_minipanels_update_6103() {

  // Convert the existing show_admin variable.
  if (variable_get('menu_minipanels_show_admin', TRUE)) {
    variable_set('menu_minipanels_exclude_paths', "admin\nadmin/*");
  }
  else {
    variable_set('menu_minipanels_exclude_paths', '');
  }

  // Delete the existing show_admin variable.
  variable_del('menu_minipanels_show_admin');
  return array();
}