function cms_content_sync_views_update_8001 in CMS Content Sync 2.0.x
Same name and namespace in other branches
- 8 modules/cms_content_sync_views/cms_content_sync_views.install \cms_content_sync_views_update_8001()
- 2.1.x modules/cms_content_sync_views/cms_content_sync_views.install \cms_content_sync_views_update_8001()
Update the module weight.
@internal param $sandbox
Return value
string
File
- modules/
cms_content_sync_views/ cms_content_sync_views.install, line 83 - Install file for cms_content_sync_views.
Code
function cms_content_sync_views_update_8001() {
// Set module weight higher then the cms_content_sync module to ensure
// update hooks are triggered after it.
module_set_weight('cms_content_sync_views', 100);
return 'Updated module weight to execute hooks after main module.';
}