You are here

function ajax_ui_install in Ajax 6

hook_install

Return value

Bool

File

ajax_ui/ajax_ui.install, line 19

Code

function ajax_ui_install() {

  // Devel module likes to go last,
  // so we will go right before the devel module
  db_query("UPDATE {system} SET " . "  weight = 80 " . "WHERE " . "  name = 'ajax_ui' AND " . "  type = 'module' ");
  return TRUE;
}