function ds_update_2 in Display Suite 6
Same name and namespace in other branches
- 6.3 ds.install \ds_update_2()
- 6.2 ds.install \ds_update_2()
Implementation of hook_update_N().
File
- ./
ds.install, line 29 - Display suite install file.
Code
function ds_update_2() {
// Enable the UI module, not everyone knows that the module UI
// and core are separated now.
module_enable(array(
'ds_ui',
));
return array();
}