You are here

function skinr_ui_update_6000 in Skinr 6.2

Install new skinr table and convert old variables to the new db system.

File

./skinr_ui.install, line 11
skinr_ui.install Contains update functions for Skinr UI.

Code

function skinr_ui_update_6000() {

  // Enable new required modules.
  module_enable(array(
    'ctools',
    'jquery_update',
    'jquery_ui',
    'dialog',
  ));
  menu_rebuild();
  return array(
    array(
      'success' => TRUE,
      'query' => "Dialog API, Chaos tools, jQuery Update, and jQuery UI modules have been enabled. If you are no longer using Modal Frame API module for any other modules than Skinr, you can now disable it.",
    ),
  );
}