function hosting_update_6000 in Hosting 6.2
Same name and namespace in other branches
- 7.4 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 85 - Install, update and uninstall for the hosting module.
Code
function hosting_update_6000() {
$ret = array();
module_enable(array(
'modalframe',
'jquery_ui',
));
return $ret;
}