Uninstall Log Plan module.

This commit is contained in:
Michael Stenta 2016-04-24 16:10:16 -04:00
parent 5f46d80c68
commit b26ce56c49
1 changed files with 11 additions and 0 deletions

View File

@ -323,6 +323,17 @@ function farm_update_7017(&$sandbox) {
_farm_enable_modules(array('farm_area_generate', 'farm_quantity'));
}
/**
* Uninstall Log Plan module.
*/
function farm_update_7018(&$sandbox) {
$modules = array(
'log_plan',
);
module_disable($modules);
drupal_uninstall_modules($modules);
}
/**
* Helper function: enable modules.
*/