function admin_views_update_7101 in Administration Views 7
Enable the new system display submodule.
File
- ./
admin_views.install, line 37 - Update scripts for Admin Views.
Code
function admin_views_update_7101() {
if (module_enable(array(
'admin_views_system_display',
))) {
return t('Enabled the new Admin Views System Display submodule.');
}
else {
throw new DrupalUpdateException('Unable to enable the new Admin Views System Display submodule.');
}
}