function hosting_update_6000 in Hosting 7.4
Same name and namespace in other branches
- 6.2 hosting.install \hosting_update_6000()
- 7.3 hosting.install \hosting_update_6000()
Implements hook_update_N().
Enable the modalframe and jquery_ui modules.
File
- ./
hosting.install, line 108 - Define database schemas and update functions for the hosting module.
Code
function hosting_update_6000() {
$ret = array();
module_enable(array(
'modalframe',
'jquery_ui',
));
return $ret;
}