Add and enable Entity Reference View Widget module.

This commit is contained in:
Michael Stenta 2015-08-07 13:57:01 -04:00
parent 54daf2f860
commit 89feb27f6b
2 changed files with 15 additions and 0 deletions

View File

@ -23,6 +23,9 @@ projects[entity][version] = "1.6"
projects[entityreference][subdir] = "contrib"
projects[entityreference][version] = "1.1"
projects[entityreference_view_widget][subdir] = "contrib"
projects[entityreference_view_widget][version] = "2.0-rc6"
projects[features][subdir] = "contrib"
projects[features][version] = "2.6"

View File

@ -64,6 +64,18 @@ function farm_update_7001(&$sandbox) {
_farm_enable_modules($modules);
}
/**
* Enable Entity Reference View Widget.
*/
function farm_update_7002(&$sandbox) {
// Enable new module dependencies.
$modules = array(
'entityreference_view_widget',
);
_farm_enable_modules($modules);
}
/**
* Helper function: enable modules.
*/